Class NoMaterializer
TBD
Implements
Inherited Members
Namespace: Akka.Streams
Assembly: Akka.Streams.dll
Syntax
public sealed class NoMaterializer : IMaterializer
Fields
| Improve this Doc View SourceInstance
TBD
Declaration
public static readonly IMaterializer Instance
Field Value
Type | Description |
---|---|
IMaterializer |
Properties
| Improve this Doc View SourceExecutionContext
N/A
Declaration
public MessageDispatcher ExecutionContext { get; }
Property Value
Type | Description |
---|---|
MessageDispatcher |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer does not provide an execution context. |
Methods
| Improve this Doc View SourceMaterialize<TMat>(IGraph<ClosedShape, TMat>)
N/A
Declaration
public TMat Materialize<TMat>(IGraph<ClosedShape, TMat> runnable)
Parameters
Type | Name | Description |
---|---|---|
IGraph<ClosedShape, TMat> | runnable | N/A |
Returns
Type | Description |
---|---|
TMat | N/A |
Type Parameters
Name | Description |
---|---|
TMat | N/A |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer cannot be materialized. |
Materialize<TMat>(IGraph<ClosedShape, TMat>, Attributes)
N/A
Declaration
public TMat Materialize<TMat>(IGraph<ClosedShape, TMat> runnable, Attributes initialAttributes)
Parameters
Type | Name | Description |
---|---|---|
IGraph<ClosedShape, TMat> | runnable | N/A |
Attributes | initialAttributes | N/A |
Returns
Type | Description |
---|---|
TMat | N/A |
Type Parameters
Name | Description |
---|---|
TMat | N/A |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer cannot be materialized. |
ScheduleOnce(TimeSpan, Action)
N/A
Declaration
public ICancelable ScheduleOnce(TimeSpan delay, Action action)
Parameters
Type | Name | Description |
---|---|---|
TimeSpan | delay | N/A |
Action | action | N/A |
Returns
Type | Description |
---|---|
ICancelable | N/A |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer cannot schedule an event. |
ScheduleRepeatedly(TimeSpan, TimeSpan, Action)
N/A
Declaration
public ICancelable ScheduleRepeatedly(TimeSpan initialDelay, TimeSpan interval, Action action)
Parameters
Type | Name | Description |
---|---|---|
TimeSpan | initialDelay | N/A |
TimeSpan | interval | N/A |
Action | action | N/A |
Returns
Type | Description |
---|---|
ICancelable | N/A |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer cannot schedule a repeatable event. |
WithNamePrefix(String)
N/A
Declaration
public IMaterializer WithNamePrefix(string name)
Parameters
Type | Name | Description |
---|---|---|
String | name | N/A |
Returns
Type | Description |
---|---|
IMaterializer | N/A |
Exceptions
Type | Condition |
---|---|
NotSupportedException | This exception is automatically thrown since NoMaterializer cannot be named. |