StorageProviderAttribute 类

定义

[Orleans.Providers.StorageProvider] 属性用于定义要用于保留 grain 状态的存储提供程序。

对于扩展 Grain<T> 的所有 grain,建议指定 [Orleans.Providers.StorageProvider] 属性。 如果未指定 [Orleans.Providers.StorageProvider] 属性,则将使用“默认”存储提供程序。 如果无法为此粒度找到合适的存储提供程序,则粒度将无法加载到 Silo 中。

[System.AttributeUsage(System.AttributeTargets.Class)]
public sealed class StorageProviderAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class)>]
type StorageProviderAttribute = class
    inherit Attribute
Public NotInheritable Class StorageProviderAttribute
Inherits Attribute
继承
StorageProviderAttribute
属性

构造函数

StorageProviderAttribute()

初始化 StorageProviderAttribute 类的新实例。

属性

ProviderName

获取或设置要用于保留粒度状态的提供程序的名称。

适用于