Class BaseRichSpout

    • Constructor Detail

      • BaseRichSpout

        public BaseRichSpout()
    • Method Detail

      • close

        public void close()
        Description copied from interface: ISpout
        Called when an ISpout is going to be shutdown. There is no guarentee that close will be called, because the supervisor kill -9's worker processes on the cluster.

        The one context where close is guaranteed to be called is a topology is killed when running Storm in local mode.

        Specified by:
        close in interface ISpout
      • activate

        public void activate()
        Description copied from interface: ISpout
        Called when a spout has been activated out of a deactivated mode. nextTuple will be called on this spout soon. A spout can become activated after having been deactivated when the topology is manipulated using the `storm` client.
        Specified by:
        activate in interface ISpout
      • deactivate

        public void deactivate()
        Description copied from interface: ISpout
        Called when a spout has been deactivated. nextTuple will not be called while a spout is deactivated. The spout may or may not be reactivated in the future.
        Specified by:
        deactivate in interface ISpout
      • ack

        public void ack​(Object msgId)
        Description copied from interface: ISpout
        Storm has determined that the tuple emitted by this spout with the msgId identifier has been fully processed. Typically, an implementation of this method will take that message off the queue and prevent it from being replayed.
        Specified by:
        ack in interface ISpout
      • fail

        public void fail​(Object msgId)
        Description copied from interface: ISpout
        The tuple emitted by this spout with the msgId identifier has failed to be fully processed. Typically, an implementation of this method will put that message back on the queue to be replayed at a later time.
        Specified by:
        fail in interface ISpout