Skip to content

StreamProviderDirection

enum

Namespace: Orleans.Streams

Identifies whether a stream provider is read-only, read-write, or write-only.
public enum StreamProviderDirection

Fields

NameValueDescription
None0None.
ReadOnly1This provider can receive messages but cannot send them.
WriteOnly2This provider can send messages but cannot receive them.
ReadWrite3This provider can both send and receive messages.