类 RedisConcurrentMessageListenerContainer<K,V>
java.lang.Object
com.wu.framework.easy.redis.listener.RedisConcurrentMessageListenerContainer<K,V>
- 所有已实现的接口:
ConcurrentMessageListenerContainer<K,,V> GenericMessageListenerContainer<K,,V> MessageListenerContainer,org.springframework.context.Lifecycle,org.springframework.context.Phased,org.springframework.context.SmartLifecycle
public class RedisConcurrentMessageListenerContainer<K,V>
extends Object
implements ConcurrentMessageListenerContainer<K,V>, GenericMessageListenerContainer<K,V>
-
字段概要
字段从接口继承的字段 org.springframework.context.SmartLifecycle
DEFAULT_PHASE -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明createContainer(int index) intbooleanCheck whether this component is currently running.voidsetConcurrency(int concurrency) voidsetEndpoint(MethodRedisListenerEndpoint endpoint) voidsetRedisProperties(org.springframework.boot.autoconfigure.data.redis.RedisProperties redisProperties) voidsetSingletonListenerContainerFactory(SingletonListenerContainerFactory containerFactory) voidstop()Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method.从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait从接口继承的方法 com.wu.framework.easy.listener.core.ConcurrentMessageListenerContainer
start从接口继承的方法 org.springframework.context.SmartLifecycle
getPhase, isAutoStartup, stop
-
字段详细资料
-
containerList
-
-
构造器详细资料
-
RedisConcurrentMessageListenerContainer
public RedisConcurrentMessageListenerContainer()
-
-
方法详细资料
-
setEndpoint
-
setRedisProperties
public void setRedisProperties(org.springframework.boot.autoconfigure.data.redis.RedisProperties redisProperties) -
getConcurrency
public int getConcurrency()- 指定者:
getConcurrency在接口中ConcurrentMessageListenerContainer<K,V>
-
setConcurrency
public void setConcurrency(int concurrency) - 指定者:
setConcurrency在接口中ConcurrentMessageListenerContainer<K,V>
-
setSingletonListenerContainerFactory
public void setSingletonListenerContainerFactory(SingletonListenerContainerFactory containerFactory) -
createContainer
- 指定者:
createContainer在接口中ConcurrentMessageListenerContainer<K,V>
-
stop
public void stop()Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycleand itsstop(Runnable)variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown,
Lifecyclebeans will first receive a stop notification before the general destruction callbacks are being propagated; however, on hot refresh during a context's lifetime or on aborted refresh attempts, a given bean's destroy method will be called without any consideration of stop signals upfront.Should not throw an exception if the component is not running (not started yet).
In the case of a container, this will propagate the stop signal to all components that apply.
- 指定者:
stop在接口中org.springframework.context.Lifecycle- 另请参阅:
-
SmartLifecycle.stop(Runnable)DisposableBean.destroy()
-
isRunning
public boolean isRunning()Check whether this component is currently running.In the case of a container, this will return
trueonly if all components that apply are currently running.- 指定者:
isRunning在接口中org.springframework.context.Lifecycle- 返回:
- whether the component is currently running
-