类 RedisSingletonMessageListenerContainer<K,V>

java.lang.Object
com.wu.framework.easy.redis.listener.RedisSingletonMessageListenerContainer<K,V>
所有已实现的接口:
GenericMessageListenerContainer<K,V>, MessageListenerContainer, SingletonMessageListenerContainer<K,V>, org.springframework.context.Lifecycle, org.springframework.context.Phased, org.springframework.context.SmartLifecycle

public class RedisSingletonMessageListenerContainer<K,V> extends Object implements SingletonMessageListenerContainer<K,V>
  • 字段详细资料

    • listenerConsumer

      protected ListenerConsumer listenerConsumer
    • running

      protected boolean running
  • 构造器详细资料

    • RedisSingletonMessageListenerContainer

      public RedisSingletonMessageListenerContainer()
  • 方法详细资料

    • start

      public void start()
      Start this component.

      Should not throw an exception if the component is already running.

      In the case of a container, this will propagate the start signal to all components that apply.

      指定者:
      start 在接口中 org.springframework.context.Lifecycle
      另请参阅:
      • SmartLifecycle.isAutoStartup()
    • 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 implementing SmartLifecycle and its stop(Runnable) variant when asynchronous stop behavior is necessary.

      Note that this stop notification is not guaranteed to come before destruction: On regular shutdown, Lifecycle beans 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 true only if all components that apply are currently running.

      指定者:
      isRunning 在接口中 org.springframework.context.Lifecycle
      返回:
      whether the component is currently running
    • setRunning

      public void setRunning(boolean running)
    • setBeanName

      public void setBeanName(String beanName)
    • setEndpoint

      public void setEndpoint(MethodRedisListenerEndpoint endpoint)
    • setJedis

      public void setJedis(redis.clients.jedis.Jedis jedis)