IGrainStorage 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
要为能够读取和写入 Orleans 粒度状态数据的存储实现的接口。
public interface IGrainStorage
type IGrainStorage = interface
Public Interface IGrainStorage
- 派生
方法
ClearStateAsync(String, GrainReference, IGrainState) |
删除/清除此存储实例的数据函数。 |
ClearStateAsync<T>(String, GrainId, IGrainState<T>) |
删除/清除此存储实例的数据函数。 |
ReadStateAsync(String, GrainReference, IGrainState) |
读取此存储实例的数据函数。 |
ReadStateAsync<T>(String, GrainId, IGrainState<T>) |
读取此存储实例的数据函数。 |
WriteStateAsync(String, GrainReference, IGrainState) |
为此存储实例写入数据函数。 |
WriteStateAsync<T>(String, GrainId, IGrainState<T>) |
为此存储实例写入数据函数。 |