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 |
---|---|
object |
Methods
| Improve this doc View sourceWaitUntilCreatedAsync()
Gets an awaitable Task that completes when the argument value is available.
Declaration
Task WaitUntilCreatedAsync()
Returns
Type | Description |
---|---|
Task | A Task representing the asynchronous operation. |