Table of Contents

Class StateStoreQueryResult<TValue>

Namespace
GroupeIsa.Neos.ClusterCommunication.DistributedStore
Assembly
GroupeIsa.Neos.ClusterCommunication.dll

Represents the result from a state query.

public class StateStoreQueryResult<TValue>

Type Parameters

TValue

The data type of the item.

Inheritance
StateStoreQueryResult<TValue>
Inherited Members

Constructors

StateStoreQueryResult(IReadOnlyList<StateStoreQueryItem<TValue>>, string)

Initializes a new instance of the StateStoreQueryResult<TValue> class.

public StateStoreQueryResult(IReadOnlyList<StateStoreQueryItem<TValue>> values, string paginationToken)

Parameters

values IReadOnlyList<StateStoreQueryItem<TValue>>

The results of the query.

paginationToken string

The pagination token to continue the query.

Properties

PaginationToken

Gets the pagination token to continue the query.

public string PaginationToken { get; }

Property Value

string

Values

Gets the result values of the query.

public IReadOnlyList<StateStoreQueryItem<TValue>> Values { get; }

Property Value

IReadOnlyList<StateStoreQueryItem<TValue>>