Class SubscribableChannelBindingTargetFactory
- java.lang.Object
-
- org.springframework.cloud.stream.binding.AbstractBindingTargetFactory<org.springframework.messaging.SubscribableChannel>
-
- org.springframework.cloud.stream.binding.SubscribableChannelBindingTargetFactory
-
- All Implemented Interfaces:
BindingTargetFactory
public class SubscribableChannelBindingTargetFactory extends AbstractBindingTargetFactory<org.springframework.messaging.SubscribableChannel>
An implementation ofBindingTargetFactoryfor creatingSubscribableChannels.- Author:
- Marius Bogoevici, David Syer, Ilayaperumal Gopinathan, Oleg Zhurakousky
-
-
Constructor Summary
Constructors Constructor Description SubscribableChannelBindingTargetFactory(MessageChannelConfigurer messageChannelConfigurer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.messaging.SubscribableChannelcreateInput(String name)Create an input binding target that will be bound via a correspondingBinder.org.springframework.messaging.SubscribableChannelcreateOutput(String name)Create an output binding target that will be bound via a correspondingBinder.-
Methods inherited from class org.springframework.cloud.stream.binding.AbstractBindingTargetFactory
canCreate
-
-
-
-
Constructor Detail
-
SubscribableChannelBindingTargetFactory
public SubscribableChannelBindingTargetFactory(MessageChannelConfigurer messageChannelConfigurer)
-
-
Method Detail
-
createInput
public org.springframework.messaging.SubscribableChannel createInput(String name)
Description copied from interface:BindingTargetFactoryCreate an input binding target that will be bound via a correspondingBinder.- Specified by:
createInputin interfaceBindingTargetFactory- Specified by:
createInputin classAbstractBindingTargetFactory<org.springframework.messaging.SubscribableChannel>- Parameters:
name- name of the binding target- Returns:
- binding target
-
createOutput
public org.springframework.messaging.SubscribableChannel createOutput(String name)
Description copied from interface:BindingTargetFactoryCreate an output binding target that will be bound via a correspondingBinder.- Specified by:
createOutputin interfaceBindingTargetFactory- Specified by:
createOutputin classAbstractBindingTargetFactory<org.springframework.messaging.SubscribableChannel>- Parameters:
name- name of the binding target- Returns:
- binding target
-
-