OrleansService
Handle
interface OrleansService { asClient(): OrleansServiceClient; withBroadcastChannel(name: string): OrleansService; withClusterId(clusterId: string): OrleansService; withClustering(provider: IResourceWithConnectionString): OrleansService; withDevelopmentClustering(): OrleansService; withGrainDirectory( name: string, provider: IResourceWithConnectionString): OrleansService; withGrainStorage( name: string, provider: IResourceWithConnectionString): OrleansService; withMemoryGrainStorage(name: string): OrleansService; withMemoryReminders(): OrleansService; withMemoryStreaming(name: string): OrleansService; withReminders(provider: IResourceWithConnectionString): OrleansService; withServiceId(serviceId: string): OrleansService; withStreaming( name: string, provider: IResourceWithConnectionString): OrleansService;} 13 members
Methods
method
asClient Returns a model of the clients of an Orleans service.
asClient(): OrleansServiceClientReturns
OrleansServiceClient method
withBroadcastChannel Adds a broadcast channel provider to the Orleans service.
withBroadcastChannel(name: string): OrleansServiceParameters
name string Returns
OrleansService method
withClusterId Sets the ClusterId of the Orleans service.
withClusterId(clusterId: string): OrleansServiceParameters
clusterId string Returns
OrleansService method
withClustering Configures the Orleans service to use the provided clustering provider.
withClustering(provider: IResourceWithConnectionString): OrleansServiceParameters
provider IResourceWithConnectionString Returns
OrleansService method
withDevelopmentClustering Configures the Orleans service to use development-only clustering.
withDevelopmentClustering(): OrleansServiceReturns
OrleansService method
withGrainDirectory Adds a grain directory provider to the Orleans service.
withGrainDirectory( name: string, provider: IResourceWithConnectionString): OrleansServiceParameters
name string provider IResourceWithConnectionString Returns
OrleansService method
withGrainStorage Adds a grain storage provider to the Orleans service.
withGrainStorage( name: string, provider: IResourceWithConnectionString): OrleansServiceParameters
name string provider IResourceWithConnectionString Returns
OrleansService method
withMemoryGrainStorage Adds an in-memory grain storage to the Orleans service.
withMemoryGrainStorage(name: string): OrleansServiceParameters
name string Returns
OrleansService method
withMemoryReminders Configures in-memory reminder storage for the Orleans service.
withMemoryReminders(): OrleansServiceReturns
OrleansService method
withMemoryStreaming Adds an in-memory stream provider to the Orleans service.
withMemoryStreaming(name: string): OrleansServiceParameters
name string Returns
OrleansService method
withReminders Configures reminder storage for the Orleans service.
withReminders(provider: IResourceWithConnectionString): OrleansServiceParameters
provider IResourceWithConnectionString Returns
OrleansService method
withServiceId Sets the ServiceId of the Orleans service.
withServiceId(serviceId: string): OrleansServiceParameters
serviceId string Returns
OrleansService method
withStreaming Adds a stream provider to the Orleans service.
withStreaming( name: string, provider: IResourceWithConnectionString): OrleansServiceParameters
name string provider IResourceWithConnectionString Returns
OrleansService