Class: Ccp::Kvs::Tch
Constant Summary
Ccp::Kvs::Tokyo::StateMachine::CLOSED, Ccp::Kvs::Tokyo::StateMachine::READABLE, Ccp::Kvs::Tokyo::StateMachine::WRITABLE
Instance Method Summary
collapse
#each, #each_keys, #each_pair, #initialize
#C!, #R, #R!, #W, #W!, #close, #open, #state, #touch
#info, #path
Methods included from Core
#[], #[]=, #close, #codec, #codec!, #decode, #encode, #ext, included, #open, #out, #put, #source, #touch
Instance Method Details
#count ⇒ Object
9
|
# File 'lib/ccp/kvs/tch.rb', line 9
def count ; R{ super }; end
|
#del(k) ⇒ Object
8
|
# File 'lib/ccp/kvs/tch.rb', line 8
def del(k) ; W{ super }; end
|
#get(k) ⇒ Object
6
|
# File 'lib/ccp/kvs/tch.rb', line 6
def get(k) ; R{ super }; end
|
#keys ⇒ Object
10
|
# File 'lib/ccp/kvs/tch.rb', line 10
def keys ; R{ super }; end
|
#read! ⇒ Object
11
|
# File 'lib/ccp/kvs/tch.rb', line 11
def read! ; R{ super }; end
|
#set(k, v) ⇒ Object
7
|
# File 'lib/ccp/kvs/tch.rb', line 7
def set(k,v) ; W{ super }; end
|