Table of Contents

Interface ILazyArgumentValue

Namespace
Silverback.Messaging.Subscribers.ArgumentResolvers
Assembly
Silverback.Core.dll

Represent a value for an argument that will be available in the future.

public interface ILazyArgumentValue

Properties

Value

Gets the argument value, as soon as it is available.

object? Value { get; }

Property Value

object

Methods

WaitUntilCreatedAsync()

Gets an awaitable Task that completes when the argument value is available.

Task WaitUntilCreatedAsync()

Returns

Task

A Task representing the asynchronous operation.