MemoryStorageWithLatency 类

定义

这是存储提供程序的简单内存中实现,它提供存储调用的固定延迟。 此类可用于系统测试和调查存储延迟的影响。

public class MemoryStorageWithLatency : Orleans.Storage.MemoryStorage
type MemoryStorageWithLatency = class
    inherit MemoryStorage
Public Class MemoryStorageWithLatency
Inherits MemoryStorage
继承
MemoryStorageWithLatency

示例

OrleansConfiguration.xml 文件中此存储提供程序的示例配置:

<OrleansConfiguration xmlns="urn:orleans">
  <Globals>
    <StorageProviders>
      <Provider Type="Orleans.Storage.MemoryStorageWithLatency" Name="MemoryStoreWithLatency" Latency="00:00:00.500"/>
  </StorageProviders>

注解

此存储提供程序仅适用于简单的内存中测试方案。 此类不应在生产环境中使用,因为[按设计]它不提供任何复原能力或长期持久性功能。

构造函数

MemoryStorageWithLatency()

默认构造函数。

字段

NumStorageGrainsDefaultValue

队列存储粒度的默认数目。

(继承自 MemoryStorage)
NumStorageGrainsPropertyName

队列存储粒度数的配置字符串名称。

(继承自 MemoryStorage)

属性

Log

此存储提供程序实例使用的记录器。

(继承自 MemoryStorage)
Name

此存储提供程序实例的名称。

(继承自 MemoryStorage)

方法

ClearStateAsync(String, GrainReference, IGrainState)

删除/清除此存储提供程序的状态数据函数。

Close()

此存储提供程序的 Shutdown 函数。

Init(String, IProviderRuntime, IProviderConfiguration)

此存储提供程序的初始化函数。

ReadStateAsync(String, GrainReference, IGrainState)

此存储提供程序的读取状态数据函数。

WriteStateAsync(String, GrainReference, IGrainState)

为此存储提供程序写入状态数据函数。

适用于