public class BatchSpoutExecutor.BatchSpoutEmitter extends Object implements ITridentSpout.Emitter<Object>
Constructor and Description |
---|
BatchSpoutEmitter() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Release any resources held by this emitter.
|
void |
emitBatch(TransactionAttempt tx,
Object coordinatorMeta,
TridentCollector collector)
Emit a batch for the specified transaction attempt and metadata for the transaction.
|
void |
success(TransactionAttempt tx)
This attempt committed successfully, so all state for this commit and before can be safely cleaned up.
|
public void emitBatch(TransactionAttempt tx, Object coordinatorMeta, TridentCollector collector)
ITridentSpout.Emitter
Emit a batch for the specified transaction attempt and metadata for the transaction. The metadata was created by the Coordinator in the initializeTransaction method. This method must always emit the same batch of tuples across all tasks for the same transaction id.
emitBatch
in interface ITridentSpout.Emitter<Object>
tx
- transaction idcoordinatorMeta
- metadata from the coordinator defining this transactioncollector
- output tuple collectorpublic void success(TransactionAttempt tx)
ITridentSpout.Emitter
This attempt committed successfully, so all state for this commit and before can be safely cleaned up.
success
in interface ITridentSpout.Emitter<Object>
tx
- attempt object containing transaction id and attempt numberpublic void close()
ITridentSpout.Emitter
Release any resources held by this emitter.
close
in interface ITridentSpout.Emitter<Object>
Copyright © 2022 The Apache Software Foundation. All rights reserved.