Interface IMessageSource<T>
A typed interface for any source of Messages that can be polled.
Namespace: Steeltoe.Integration
Assembly: Steeltoe.Integration.Abstractions.dll
Syntax
public interface IMessageSource<out T> : IMessageSource
Type Parameters
Name | Description |
---|---|
T | the type of payload in the message |
Methods
| Edit this page View SourceReceive()
Poll for a message from the source
Declaration
IMessage<T> Receive()
Returns
Type | Description |
---|---|
IMessage<T> | the message |