Module: Glacier2::IdentitySetPrx_mixin
- Included in:
- IdentitySetPrx
- Defined in:
- ruby/Glacier2/Session.rb
Constant Summary collapse
- OP_add =
Ice::__defineOperation('add', 'add', Ice::OperationMode::Idempotent, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
- OP_remove =
Ice::__defineOperation('remove', 'remove', Ice::OperationMode::Idempotent, nil, [[::Ice::T_IdentitySeq, false, 0]], [], nil, [])
- OP_get =
Ice::__defineOperation('get', 'get', Ice::OperationMode::Idempotent, 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
84 85 86 |
# File 'ruby/Glacier2/Session.rb', line 84 def add(additions, context=nil) IdentitySetPrx_mixin::OP_add.invoke(self, [additions], context) end |
#get(context = nil) ⇒ Object
92 93 94 |
# File 'ruby/Glacier2/Session.rb', line 92 def get(context=nil) IdentitySetPrx_mixin::OP_get.invoke(self, [], context) end |
#remove(deletions, context = nil) ⇒ Object
88 89 90 |
# File 'ruby/Glacier2/Session.rb', line 88 def remove(deletions, context=nil) IdentitySetPrx_mixin::OP_remove.invoke(self, [deletions], context) end |