Class EndpointSpec<S extends EndpointSpec<S,F,H>,F extends BeanNameAware & FactoryBean<? extends AbstractEndpoint>,H>
java.lang.Object
org.springframework.integration.dsl.IntegrationComponentSpec<S,reactor.util.function.Tuple2<F,H>>
org.springframework.integration.dsl.EndpointSpec<S,F,H>
- Type Parameters:
S
- the targetConsumerEndpointSpec
implementation type.F
- the targetBeanNameAware
implementation type.H
- the targetMessageHandler
implementation type.
- All Implemented Interfaces:
DisposableBean
,FactoryBean<reactor.util.function.Tuple2<F,
,H>> InitializingBean
,Lifecycle
,Phased
,SmartLifecycle
,ComponentsRegistration
- Direct Known Subclasses:
ConsumerEndpointSpec
,SourcePollingChannelAdapterSpec
public abstract class EndpointSpec<S extends EndpointSpec<S,F,H>,F extends BeanNameAware & FactoryBean<? extends AbstractEndpoint>,H>
extends IntegrationComponentSpec<S,reactor.util.function.Tuple2<F,H>>
implements ComponentsRegistration
An
IntegrationComponentSpec
for endpoints.- Since:
- 5.0
- Author:
- Artem Bilan, Gary Russell
-
Field Summary
Fields inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
logger, PARSER, target
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
Fields inherited from interface org.springframework.context.SmartLifecycle
DEFAULT_PHASE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
abstract S
autoStartup
(boolean autoStartup) doGet()
Configure the component identifier.protected MessageChannel
Try to get aMessageChannel
as an input for the providedIntegrationFlow
or create one and wrap the provided flow to a new one.protected MessageChannel
obtainInputChannelFromFlow
(IntegrationFlow subFlow, boolean evaluateInternalBuilder) Try to get aMessageChannel
as an input for the providedIntegrationFlow
or create one and wrap the provided flow to a new one.abstract S
phase
(int phase) poller
(Function<PollerFactory, PollerSpec> pollers) poller
(PollerSpec pollerMetadataSpec) abstract S
poller
(PollerMetadata pollerMetadata) abstract S
Specify the role for the endpoint.Methods inherited from class org.springframework.integration.dsl.IntegrationComponentSpec
_this, afterPropertiesSet, destroy, getId, getObject, getObjectType, getPhase, isAutoStartup, isRunning, start, stop, stop
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
Field Details
-
componentsToRegister
-
endpointFactoryBean
protected final F extends BeanNameAware & FactoryBean<? extends AbstractEndpoint> endpointFactoryBean -
handler
-
-
Constructor Details
-
EndpointSpec
-
-
Method Details
-
id
Description copied from class:IntegrationComponentSpec
Configure the component identifier. Used as thebeanName
to register the bean in the application context for this component.- Overrides:
id
in classIntegrationComponentSpec<S extends EndpointSpec<S,
F, H>, reactor.util.function.Tuple2<F extends BeanNameAware & FactoryBean<? extends AbstractEndpoint>, H>> - Parameters:
id
- the id.- Returns:
- the spec.
-
poller
- Parameters:
pollers
- the pollers- Returns:
- the endpoint spec.
- See Also:
-
poller
- Parameters:
pollerMetadataSpec
- the pollerMetadataSpec- Returns:
- the endpoint spec.
- See Also:
-
poller
- Parameters:
pollerMetadata
- the pollerMetadata- Returns:
- the endpoint spec.
- See Also:
-
phase
- Parameters:
phase
- the phase.- Returns:
- the endpoint spec.
- See Also:
-
autoStartup
- Parameters:
autoStartup
- the autoStartup.- Returns:
- the endpoint spec
- See Also:
-
role
Specify the role for the endpoint. Such endpoints can be started/stopped as a group.- Parameters:
role
- the role for this endpoint.- Returns:
- the endpoint spec
- See Also:
-
getComponentsToRegister
- Specified by:
getComponentsToRegister
in interfaceComponentsRegistration
-
doGet
- Overrides:
doGet
in classIntegrationComponentSpec<S extends EndpointSpec<S,
F, H>, reactor.util.function.Tuple2<F extends BeanNameAware & FactoryBean<? extends AbstractEndpoint>, H>>
-
assertHandler
protected void assertHandler() -
obtainInputChannelFromFlow
Try to get aMessageChannel
as an input for the providedIntegrationFlow
or create one and wrap the provided flow to a new one.- Parameters:
subFlow
- theIntegrationFlow
to extract input channel.- Returns:
- the input channel of the flow of create one
- Since:
- 5.0.4
-
obtainInputChannelFromFlow
protected MessageChannel obtainInputChannelFromFlow(IntegrationFlow subFlow, boolean evaluateInternalBuilder) Try to get aMessageChannel
as an input for the providedIntegrationFlow
or create one and wrap the provided flow to a new one.- Parameters:
subFlow
- theIntegrationFlow
to extract input channel.evaluateInternalBuilder
- true if an internalIntegrationFlowDefinition
should be evaluated to anIntegrationFlow
component or left as a builder in thecomponentsToRegister
for future use-case. For example the builder is used for router configurations to retain beans registration order for parent-child dependencies.- Returns:
- the input channel of the flow of create one
- Since:
- 5.0.4
-