Interface ILazyArgumentValue
Represent a value for an argument that will be available in the future.
Namespace: Silverback.Messaging.Subscribers.ArgumentResolvers
Assembly: Silverback.Core.dll
Syntax
public interface ILazyArgumentValue
Properties
| Improve this doc View sourceValue
Gets the argument value, as soon as it is available.
Declaration
object Value { get; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
| Improve this doc View sourceWaitUntilCreatedAsync()
Gets an awaitable System.Threading.Tasks.Task that completes when the argument value is available.
Declaration
Task WaitUntilCreatedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing the asynchronous operation. |