Exemplo n.º 1
0
 public override void SetResponse(BlittableJsonReaderObject response, bool fromCache)
 {
     if (response == null)
     {
         throw new InvalidOperationException();
     }
     Result = JsonDeserializationClient.BlittableArrayResult(response);
 }
Exemplo n.º 2
0
        public override void SetResponse(BlittableJsonReaderObject response, bool fromCache)
        {
            if (response == null)
            {
                throw new InvalidOperationException("Got null response from the server after doing a batch, something is very wrong. Probably a garbled response.");
            }

            Result = JsonDeserializationClient.BlittableArrayResult(response);
        }
Exemplo n.º 3
0
        public override void SetResponse(BlittableJsonReaderObject response, bool fromCache)
        {
            if (response == null)
            {
                Result = null;
                return;
            }

            Result = JsonDeserializationClient.BlittableArrayResult(response);
        }
Exemplo n.º 4
0
 public override void SetResponse(JsonOperationContext context, BlittableJsonReaderObject response, bool fromCache)
 {
     if (response == null)
     {
         throw new InvalidOperationException();
     }
     if (fromCache)
     {
         // we have to clone the response here because  otherwise the cached item might be freed while
         // we are still looking at this result, so we clone it to the side
         response = response.Clone(context);
     }
     Result = JsonDeserializationClient.BlittableArrayResult(response);
 }
Exemplo n.º 5
0
 public override void SetResponse(JsonOperationContext context, BlittableJsonReaderObject response, bool fromCache)
 {
     if (response == null)
     {
         throw new InvalidOperationException("Got null response from the server after doing a batch, something is very wrong. Probably a garbled response.");
     }
     // this should never actually occur, we are not caching the response of batch commands, but keeping it here anyway
     if (fromCache)
     {
         // we have to clone the response here because  otherwise the cached item might be freed while
         // we are still looking at this result, so we clone it to the side
         response = response.Clone(context);
     }
     Result = JsonDeserializationClient.BlittableArrayResult(response);
 }