Interface IBindingService
Handles binding of input/output targets by delegating to an underlying Binder.
TODO: Try to make this internal interface
Assembly: Steeltoe.Stream.Abstractions.dll
Syntax
public interface IBindingService
Methods
|
Edit this page
View Source
BindConsumer<T>(T, String)
Declaration
ICollection<IBinding> BindConsumer<T>(T inputChannel, string name)
Parameters
Type |
Name |
Description |
T |
inputChannel |
|
System.String |
name |
|
Returns
Type Parameters
|
Edit this page
View Source
BindProducer<T>(T, String)
Declaration
IBinding BindProducer<T>(T outputChannel, string name)
Parameters
Type |
Name |
Description |
T |
outputChannel |
|
System.String |
name |
|
Returns
Type Parameters
|
Edit this page
View Source
UnbindConsumers(String)
Declaration
void UnbindConsumers(string inputName)
Parameters
Type |
Name |
Description |
System.String |
inputName |
|
|
Edit this page
View Source
UnbindProducers(String)
Declaration
void UnbindProducers(string outputName)
Parameters
Type |
Name |
Description |
System.String |
outputName |
|