public static final class ScsGrpc.ScsBlockingStub extends io.grpc.stub.AbstractBlockingStub<ScsGrpc.ScsBlockingStub>
protected ScsGrpc.ScsBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<ScsGrpc.ScsBlockingStub>public _GetResponse get(_GetRequest request)
public _SetResponse set(_SetRequest request)
public _SetIfNotExistsResponse setIfNotExists(_SetIfNotExistsRequest request)
public _DeleteResponse delete(_DeleteRequest request)
public _KeysExistResponse keysExist(_KeysExistRequest request)
public _IncrementResponse increment(_IncrementRequest request)
public _UpdateTtlResponse updateTtl(_UpdateTtlRequest request)
public _ItemGetTtlResponse itemGetTtl(_ItemGetTtlRequest request)
public _ItemGetTypeResponse itemGetType(_ItemGetTypeRequest request)
public _DictionaryGetResponse dictionaryGet(_DictionaryGetRequest request)
public _DictionaryFetchResponse dictionaryFetch(_DictionaryFetchRequest request)
public _DictionarySetResponse dictionarySet(_DictionarySetRequest request)
public _DictionaryIncrementResponse dictionaryIncrement(_DictionaryIncrementRequest request)
public _DictionaryDeleteResponse dictionaryDelete(_DictionaryDeleteRequest request)
public _DictionaryLengthResponse dictionaryLength(_DictionaryLengthRequest request)
public _SetFetchResponse setFetch(_SetFetchRequest request)
public _SetUnionResponse setUnion(_SetUnionRequest request)
public _SetDifferenceResponse setDifference(_SetDifferenceRequest request)
public _SetContainsResponse setContains(_SetContainsRequest request)
public _SetLengthResponse setLength(_SetLengthRequest request)
public _ListPushFrontResponse listPushFront(_ListPushFrontRequest request)
public _ListPushBackResponse listPushBack(_ListPushBackRequest request)
public _ListPopFrontResponse listPopFront(_ListPopFrontRequest request)
public _ListPopBackResponse listPopBack(_ListPopBackRequest request)
public _ListEraseResponse listErase(_ListEraseRequest request)
public _ListRemoveResponse listRemove(_ListRemoveRequest request)
public _ListFetchResponse listFetch(_ListFetchRequest request)
public _ListLengthResponse listLength(_ListLengthRequest request)
public _ListConcatenateFrontResponse listConcatenateFront(_ListConcatenateFrontRequest request)
public _ListConcatenateBackResponse listConcatenateBack(_ListConcatenateBackRequest request)
public _ListRetainResponse listRetain(_ListRetainRequest request)
public _SortedSetPutResponse sortedSetPut(_SortedSetPutRequest request)
Add or Updates new element with its score to the Sorted Set. If sorted set doesn't exist, a new one is created with the specified element and its associated score. If an element exists, then its associate score gets overridden with the one provided in this operation.
public _SortedSetFetchResponse sortedSetFetch(_SortedSetFetchRequest request)
Fetches a subset of elements in the sorted set.
public _SortedSetGetScoreResponse sortedSetGetScore(_SortedSetGetScoreRequest request)
Gets the specified element and its associated score if it exists in the sorted set.
public _SortedSetRemoveResponse sortedSetRemove(_SortedSetRemoveRequest request)
Removes specified elements and their associated scores
public _SortedSetIncrementResponse sortedSetIncrement(_SortedSetIncrementRequest request)
Changes the score associated with the element by specified amount. If the provided amount is negative, then the score associated with the element is decremented. If the element that needs to be incremented isn't present in the sorted set, it is added with specified number as the score. If the set itself doesn't exist then a new one with specified element and score is created.
public _SortedSetGetRankResponse sortedSetGetRank(_SortedSetGetRankRequest request)
Gives the rank of an element.
public _SortedSetLengthResponse sortedSetLength(_SortedSetLengthRequest request)
Returns length of the sorted set
public _SortedSetLengthByScoreResponse sortedSetLengthByScore(_SortedSetLengthByScoreRequest request)
Returns number of elements in the sorted set between a given min and max score