Module: Glacier2::IdentitySetPrx_mixin
- Included in:
- IdentitySetPrx
- Defined in:
- lib/Glacier2/Session.rb
Constant Summary collapse
- OP_add =
::Ice::__defineOperation('add', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
- OP_remove =
::Ice::__defineOperation('remove', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
- OP_get =
::Ice::__defineOperation('get', ::Ice::OperationMode::Idempotent, ::Ice::OperationMode::Idempotent, false, nil, [], [], [::Ice::T_IdentitySeq, false, 0], [])
Instance Method Summary collapse
- #add(additions, context = nil) ⇒ Object
- #get(context = nil) ⇒ Object
- #remove(deletions, context = nil) ⇒ Object
Instance Method Details
#add(additions, context = nil) ⇒ Object
112 113 114 |
# File 'lib/Glacier2/Session.rb', line 112 def add(additions, context=nil) IdentitySetPrx_mixin::OP_add.invoke(self, [additions], context) end |
#get(context = nil) ⇒ Object
120 121 122 |
# File 'lib/Glacier2/Session.rb', line 120 def get(context=nil) IdentitySetPrx_mixin::OP_get.invoke(self, [], context) end |
#remove(deletions, context = nil) ⇒ Object
116 117 118 |
# File 'lib/Glacier2/Session.rb', line 116 def remove(deletions, context=nil) IdentitySetPrx_mixin::OP_remove.invoke(self, [deletions], context) end |