Class: Ccp::Kvs::Kch
Constant Summary
Ccp::Kvs::Kyoto::StateMachine::CLOSED, Ccp::Kvs::Kyoto::StateMachine::LOCKED_BY, Ccp::Kvs::Kyoto::StateMachine::READABLE, Ccp::Kvs::Kyoto::StateMachine::WRITABLE
Instance Method Summary
collapse
#exist?, #initialize
#C!, #R, #R!, #W, #W!, #__close__, #close, #locker_info, #open, #state, #touch
#info, #path
Methods included from Core
#[], #[]=, #close, #codec, #codec!, #decode, #encode, #exist?, #ext, included, #key?, #open, #out, #put, #source, #touch
Instance Method Details
#clear ⇒ Object
20
|
# File 'lib/ccp/kvs/kch.rb', line 20
def clear ; W{ super }; end
|
#count ⇒ Object
17
|
# File 'lib/ccp/kvs/kch.rb', line 17
def count ; R{ super }; end
|
#del(k) ⇒ Object
16
|
# File 'lib/ccp/kvs/kch.rb', line 16
def del(k) ; W{ super }; end
|
#each(&b) ⇒ Object
23
|
# File 'lib/ccp/kvs/kch.rb', line 23
def each(&b) ; R{ super }; end
|
#each_key(&b) ⇒ Object
25
|
# File 'lib/ccp/kvs/kch.rb', line 25
def each_key(&b) ; R{ super }; end
|
#each_pair(&b) ⇒ Object
24
|
# File 'lib/ccp/kvs/kch.rb', line 24
def each_pair(&b) ; R{ super }; end
|
#first ⇒ Object
28
|
# File 'lib/ccp/kvs/kch.rb', line 28
def first ; R{ super }; end
|
#first_key ⇒ Object
27
|
# File 'lib/ccp/kvs/kch.rb', line 27
def first_key ; R{ super }; end
|
#get(k) ⇒ Object
14
|
# File 'lib/ccp/kvs/kch.rb', line 14
def get(k) ; R{ super }; end
|
#keys ⇒ Object
26
|
# File 'lib/ccp/kvs/kch.rb', line 26
def keys ; R{ super }; end
|
#read ⇒ Object
18
|
# File 'lib/ccp/kvs/kch.rb', line 18
def read ; R{ super }; end
|
#set(k, v) ⇒ Object
15
|
# File 'lib/ccp/kvs/kch.rb', line 15
def set(k,v) ; W{ super }; end
|
#write(h) ⇒ Object
19
|
# File 'lib/ccp/kvs/kch.rb', line 19
def write(h) ; W{ super }; end
|