Uses of Class
dstruct.ConcurrentOperatorsBucket

Packages that use ConcurrentOperatorsBucket
dstruct Basic data structure used by Felix. 
optimizer Optimizer used to schedule Felix's execution plan. 
 

Uses of ConcurrentOperatorsBucket in dstruct
 

Fields in dstruct declared as ConcurrentOperatorsBucket
 ConcurrentOperatorsBucket StatOperator.belongsToBucket
          The ConcurrentOperatorsBucket this StatOperator belongs to.
 

Fields in dstruct with type parameters of type ConcurrentOperatorsBucket
 java.util.HashMap<ConcurrentOperatorsBucket,java.util.HashSet<ConcurrentOperatorsBucket>> OperatorBucketGraph.downStreams
          Map from the bucket to its downstream buckets.
 java.util.HashMap<ConcurrentOperatorsBucket,java.util.HashSet<ConcurrentOperatorsBucket>> OperatorBucketGraph.downStreams
          Map from the bucket to its downstream buckets.
(package private)  java.util.HashSet<ConcurrentOperatorsBucket> OperatorBucketGraph.operators
          Set of operators in this OperatorBucketGraph.
 java.util.ArrayList<ConcurrentOperatorsBucket> ExecutionPlan.operators
          List of buckets which are organized in physical execution order.
 java.util.HashMap<ConcurrentOperatorsBucket,java.util.HashSet<ConcurrentOperatorsBucket>> OperatorBucketGraph.upStreams
          Map from the bucket to its upstream buckets.
 java.util.HashMap<ConcurrentOperatorsBucket,java.util.HashSet<ConcurrentOperatorsBucket>> OperatorBucketGraph.upStreams
          Map from the bucket to its upstream buckets.
 

Methods in dstruct that return ConcurrentOperatorsBucket
 ConcurrentOperatorsBucket OperatorBucketGraph.getOneRandomOperator()
          Randomly pick one bucket in this OperatorBucketGraph.
 

Methods in dstruct that return types with arguments of type ConcurrentOperatorsBucket
 java.util.HashSet<ConcurrentOperatorsBucket> OperatorBucketGraph.getDownStreamOperator(StatOperator sop)
          Gets all downstream buckets of the given bucket.
 java.util.HashSet<ConcurrentOperatorsBucket> OperatorBucketGraph.getOperators()
          Return the set of buckets in this OperatorBucketGraph.
 java.util.HashSet<ConcurrentOperatorsBucket> OperatorBucketGraph.getUpStreamOperator(StatOperator sop)
          Gets all upstream buckets of the given bucket.
 

Methods in dstruct with parameters of type ConcurrentOperatorsBucket
 void OperatorBucketGraph.addOperator(ConcurrentOperatorsBucket sop)
          Add a new bucket to this OperatorBucketGraph.
 void ExecutionPlan.addOperatorAfter(ConcurrentOperatorsBucket sop)
          Add a bucket in the end of the execution plan.
 void ExecutionPlan.addOperatorBefore(ConcurrentOperatorsBucket sop)
          Add a bucket before the end of the execution plan.
private  void OperatorBucketGraph.addOperatorRelation(ConcurrentOperatorsBucket upStream, ConcurrentOperatorsBucket downStream)
          Add a new bucket relation to this OperatorBucketGraph.
 

Uses of ConcurrentOperatorsBucket in optimizer
 

Methods in optimizer with parameters of type ConcurrentOperatorsBucket
 void DMOOptimizer.optimizeDMO(ConcurrentOperatorsBucket cob)
          Optimize all DMOs appearing in the given ConcurrentOperatorsBucket.