public class SequenceGeneratorSource extends AbstractSource implements PollableSource, Configurable
PollableSource.Status| Constructor and Description |
|---|
SequenceGeneratorSource() |
| Modifier and Type | Method and Description |
|---|---|
void |
configure(Context context)
Read parameters from context
batchSize = type int that defines the size of event batches
|
PollableSource.Status |
process()
Attempt to pull an item from the source, sending it to the channel.
|
void |
start()
Starts a service or component.
|
void |
stop()
Stops a service or component.
|
getChannelProcessor, getLifecycleState, getName, setChannelProcessor, setName, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetChannelProcessor, setChannelProcessorgetLifecycleStategetName, setNamepublic void configure(Context context)
configure in interface Configurablepublic PollableSource.Status process() throws EventDeliveryException
PollableSourceAttempt to pull an item from the source, sending it to the channel.
When driven by an EventDrivenSourceRunner process is guaranteed
to be called only by a single thread at a time, with no concurrency.
Any other mechanism driving a pollable source must follow the same
semantics.
process in interface PollableSourceREADY if one or more events were created from the source.
BACKOFF if no events could be created from the source.EventDeliveryException - If there was a failure in delivering to
the attached channel, or if a failure occurred in acquiring data from
the source.public void start()
LifecycleAwareStarts a service or component.
Implementations should determine the result of any start logic and effect
the return value of LifecycleAware.getLifecycleState() accordingly.
start in interface LifecycleAwarestart in class AbstractSourcepublic void stop()
LifecycleAwareStops a service or component.
Implementations should determine the result of any stop logic and effect
the return value of LifecycleAware.getLifecycleState() accordingly.
stop in interface LifecycleAwarestop in class AbstractSourceCopyright © 2009-2014 Apache Software Foundation. All Rights Reserved.