Interface IStreamNamespacePredicate
Stream namespace predicate used for filtering implicit subscriptions using ImplicitStreamSubscriptionAttribute.
Namespace: Orleans.Streams
Assembly: Orleans.Core.Abstractions.dll
Syntax
public interface IStreamNamespacePredicate
Remarks
All implementations must be serializable.
Methods
| Improve this Doc View SourceIsMatch(String)
Defines if the consumer grain should subscribe to the specified namespace.
Declaration
bool IsMatch(string streamNamespace)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | streamNamespace | The target stream namespace to check. |
Returns
| Type | Description |
|---|---|
| System.Boolean |
|