Uses of Interface
backtype.storm.tuple.Tuple

Packages that use Tuple
backtype.storm.clojure   
backtype.storm.coordination   
backtype.storm.drpc   
backtype.storm.hooks.info   
backtype.storm.metric   
backtype.storm.serialization   
backtype.storm.state   
backtype.storm.task   
backtype.storm.testing   
backtype.storm.topology   
backtype.storm.transactional   
backtype.storm.tuple   
storm.trident.planner   
storm.trident.spout   
storm.trident.topology   
storm.trident.tuple   
 

Uses of Tuple in backtype.storm.clojure
 

Methods in backtype.storm.clojure with parameters of type Tuple
 void ClojureBolt.execute(Tuple input)
           
 

Uses of Tuple in backtype.storm.coordination
 

Methods in backtype.storm.coordination with parameters of type Tuple
 void CoordinatedBolt.CoordinatedOutputCollector.ack(Tuple tuple)
           
 void BatchOutputCollectorImpl.ack(Tuple tup)
           
 void IBatchBolt.execute(Tuple tuple)
           
 void CoordinatedBolt.execute(Tuple tuple)
           
 void BatchBoltExecutor.execute(Tuple input)
           
 void CoordinatedBolt.CoordinatedOutputCollector.fail(Tuple tuple)
           
 void BatchOutputCollectorImpl.fail(Tuple tup)
           
 

Method parameters in backtype.storm.coordination with type arguments of type Tuple
 List<Integer> CoordinatedBolt.CoordinatedOutputCollector.emit(String stream, Collection<Tuple> anchors, List<Object> tuple)
           
 void CoordinatedBolt.CoordinatedOutputCollector.emitDirect(int task, String stream, Collection<Tuple> anchors, List<Object> tuple)
           
 

Uses of Tuple in backtype.storm.drpc
 

Methods in backtype.storm.drpc with parameters of type Tuple
 void ReturnResults.execute(Tuple input)
           
 void KeyedFairBolt.execute(Tuple input)
           
 void JoinResult.execute(Tuple tuple)
           
 void PrepareRequest.execute(Tuple tuple, BasicOutputCollector collector)
           
 

Uses of Tuple in backtype.storm.hooks.info
 

Fields in backtype.storm.hooks.info declared as Tuple
 Tuple BoltFailInfo.tuple
           
 Tuple BoltExecuteInfo.tuple
           
 Tuple BoltAckInfo.tuple
           
 

Constructors in backtype.storm.hooks.info with parameters of type Tuple
BoltAckInfo(Tuple tuple, int ackingTaskId, Long processLatencyMs)
           
BoltExecuteInfo(Tuple tuple, int executingTaskId, Long executeLatencyMs)
           
BoltFailInfo(Tuple tuple, int failingTaskId, Long failLatencyMs)
           
 

Uses of Tuple in backtype.storm.metric
 

Methods in backtype.storm.metric with parameters of type Tuple
 void SystemBolt.execute(Tuple input)
           
 void MetricsConsumerBolt.execute(Tuple input)
           
 

Uses of Tuple in backtype.storm.serialization
 

Methods in backtype.storm.serialization that return Tuple
 Tuple KryoTupleDeserializer.deserialize(byte[] ser)
           
 Tuple ITupleDeserializer.deserialize(byte[] ser)
           
 

Methods in backtype.storm.serialization with parameters of type Tuple
 byte[] KryoTupleSerializer.serialize(Tuple tuple)
           
 byte[] ITupleSerializer.serialize(Tuple tuple)
           
 

Uses of Tuple in backtype.storm.state
 

Methods in backtype.storm.state with parameters of type Tuple
 void ISubscribedState.set(Object id, Tuple tuple)
           
 

Uses of Tuple in backtype.storm.task
 

Methods in backtype.storm.task with parameters of type Tuple
 void OutputCollector.ack(Tuple input)
           
 void IOutputCollector.ack(Tuple input)
           
 List<Integer> OutputCollector.emit(String streamId, Tuple anchor, List<Object> tuple)
          Emits a new tuple to a specific stream with a single anchor.
 List<Integer> OutputCollector.emit(Tuple anchor, List<Object> tuple)
          Emits a new tuple to the default stream anchored on a single tuple.
 void OutputCollector.emitDirect(int taskId, String streamId, Tuple anchor, List<Object> tuple)
          Emits a tuple directly to the specified task id on the specified stream.
 void OutputCollector.emitDirect(int taskId, Tuple anchor, List<Object> tuple)
          Emits a tuple directly to the specified task id on the default stream.
 void ShellBolt.execute(Tuple input)
           
 void IBolt.execute(Tuple input)
          Process a single tuple of input.
 void OutputCollector.fail(Tuple input)
           
 void IOutputCollector.fail(Tuple input)
           
 

Method parameters in backtype.storm.task with type arguments of type Tuple
 List<Integer> OutputCollector.emit(Collection<Tuple> anchors, List<Object> tuple)
          Emits a new tuple to the default stream anchored on a group of input tuples.
 List<Integer> OutputCollector.emit(String streamId, Collection<Tuple> anchors, List<Object> tuple)
           
 List<Integer> IOutputCollector.emit(String streamId, Collection<Tuple> anchors, List<Object> tuple)
          Returns the task ids that received the tuples.
 void OutputCollector.emitDirect(int taskId, Collection<Tuple> anchors, List<Object> tuple)
          Emits a tuple directly to the specified task id on the default stream.
 void OutputCollector.emitDirect(int taskId, String streamId, Collection<Tuple> anchors, List<Object> tuple)
           
 void IOutputCollector.emitDirect(int taskId, String streamId, Collection<Tuple> anchors, List<Object> tuple)
           
 

Uses of Tuple in backtype.storm.testing
 

Methods in backtype.storm.testing with parameters of type Tuple
 void TupleCaptureBolt.execute(Tuple input)
           
 void TestPlannerBolt.execute(Tuple input)
           
 void TestGlobalCount.execute(Tuple input)
           
 void TestEventOrderCheckBolt.execute(Tuple input)
           
 void TestAggregatesCounter.execute(Tuple input)
           
 void NonRichBoltTracker.execute(Tuple input)
           
 void KeyedSummingBatchBolt.execute(Tuple tuple)
           
 void KeyedCountingBatchBolt.execute(Tuple tuple)
           
 void CountingCommitBolt.execute(Tuple tuple)
           
 void CountingBatchBolt.execute(Tuple tuple)
           
 void BatchNumberList.execute(Tuple tuple)
           
 void TestWordCounter.execute(Tuple input, BasicOutputCollector collector)
           
 void TestConfBolt.execute(Tuple input, BasicOutputCollector collector)
           
 void PrepareBatchBolt.execute(Tuple input, BasicOutputCollector collector)
           
 void IdentityBolt.execute(Tuple input, BasicOutputCollector collector)
           
 void BatchRepeatA.execute(Tuple input, BasicOutputCollector collector)
           
 void BatchProcessWord.execute(Tuple input, BasicOutputCollector collector)
           
 

Uses of Tuple in backtype.storm.topology
 

Methods in backtype.storm.topology with parameters of type Tuple
 void BasicBoltExecutor.execute(Tuple input)
           
 void IBasicBolt.execute(Tuple input, BasicOutputCollector collector)
          Process the input tuple and optionally emit new tuples based on the input tuple.
 void BasicOutputCollector.setContext(Tuple inputTuple)
           
 

Uses of Tuple in backtype.storm.transactional
 

Methods in backtype.storm.transactional with parameters of type Tuple
 void TransactionalSpoutBatchExecutor.execute(Tuple input)
           
 

Uses of Tuple in backtype.storm.tuple
 

Classes in backtype.storm.tuple that implement Tuple
 class TupleImpl
           
 

Uses of Tuple in storm.trident.planner
 

Methods in storm.trident.planner with parameters of type Tuple
 void SubtopologyBolt.execute(BatchInfo batchInfo, Tuple tuple)
           
 void SubtopologyBolt.InitialReceiver.receive(ProcessorContext context, Tuple tuple)
           
 

Uses of Tuple in storm.trident.spout
 

Methods in storm.trident.spout with parameters of type Tuple
 void TridentSpoutExecutor.execute(BatchInfo info, Tuple input)
           
 void TridentSpoutCoordinator.execute(Tuple tuple, BasicOutputCollector collector)
           
 

Uses of Tuple in storm.trident.topology
 

Methods in storm.trident.topology with parameters of type Tuple
 void TridentBoltExecutor.CoordinatedOutputCollector.ack(Tuple tuple)
           
 void ITridentBatchBolt.execute(BatchInfo batchInfo, Tuple tuple)
           
 void TridentBoltExecutor.execute(Tuple tuple)
           
 void TridentBoltExecutor.CoordinatedOutputCollector.fail(Tuple tuple)
           
 

Method parameters in storm.trident.topology with type arguments of type Tuple
 List<Integer> TridentBoltExecutor.CoordinatedOutputCollector.emit(String stream, Collection<Tuple> anchors, List<Object> tuple)
           
 void TridentBoltExecutor.CoordinatedOutputCollector.emitDirect(int task, String stream, Collection<Tuple> anchors, List<Object> tuple)
           
 

Uses of Tuple in storm.trident.tuple
 

Methods in storm.trident.tuple with parameters of type Tuple
 TridentTuple TridentTupleView.RootFactory.create(Tuple parent)
           
 



Copyright © 2014 The Apache Software Foundation. All Rights Reserved.