Exemplo n.º 1
0
        private Parameter.Value getUpdateNode(keyType key)
        {
            Parameter.Value node = new Parameter.Value(this);
            ValueData.Data <keyType> .SetData(ref node.Parameter, key);

            return(node);
        }
Exemplo n.º 2
0
        public Parameter.OperationBool GetSetNode(keyType key, valueType value)
        {
            Parameter.Value keyNode = new Parameter.Value(this);
            ValueData.Data <keyType> .SetData(ref keyNode.Parameter, key);

            return(ValueData.Data <valueType> .GetOperationBool(keyNode, value, OperationParameter.OperationType.SetValue));
        }
Exemplo n.º 3
0
 internal Parameter.Value GetDequeueIdentityNode(Cache.MessageQueue.ReaderConfig config)
 {
     Parameter.Value node = new Parameter.Value(this, OperationParameter.OperationType.MessageQueueGetDequeueIdentity);
     node.Parameter.SetJson(config);
     return(node);
 }
Exemplo n.º 4
0
 private Parameter.Value getDequeueIdentityNode(int readerIndex, Cache.MessageQueue.ReaderConfig config)
 {
     Parameter.Value node = new Parameter.Value(new Parameter.Value(this, readerIndex), OperationParameter.OperationType.MessageQueueGetDequeueIdentity);
     node.Parameter.SetJson(config);
     return(node);
 }
Exemplo n.º 5
0
 internal Parameter.Value GetSetDequeueIdentityNode(ulong[] identitys)
 {
     Parameter.Value node = new Parameter.Value(this, OperationParameter.OperationType.MessageQueueSetDequeueIdentity);
     node.Parameter.SetBinary(identitys);
     return(node);
 }