Interface IQueryResultConsumer<T>
An interface for consumers of game state query results.
Namespace: Microsoft.XboxStudios.GameStateTracker.Cache
Assembly: GameStateTracker.Abstractions.dll
Syntax
public interface IQueryResultConsumer<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of object produced. |
Methods
View SourceMergeResult(in QueryResult)
Consumes the game state query result and produces an object.
Declaration
T MergeResult(in QueryResult item)
Parameters
| Type | Name | Description |
|---|---|---|
| QueryResult | item | The query result. |
Returns
| Type | Description |
|---|---|
| T | An object. |