Interface IOperatorStateWriter
Represents an operator state writer.
Namespace: Reaqtive
Assembly: Reaqtive.Interfaces.dll
Syntax
public interface IOperatorStateWriter : IDisposable
Methods
CreateChild()
Creates a child state writer.
Declaration
IOperatorStateWriter CreateChild()
Returns
Type | Description |
---|---|
IOperatorStateWriter | Child state writer. |
Write<T>(T)
Stores the provided value.
Declaration
void Write<T>(T value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value to store. |
Type Parameters
Name | Description |
---|---|
T | The type of the value to store. |