Tabnine Logo
FlowNodeGraph.getOrderedTopologicalIterator
Code IndexAdd Tabnine to your IDE (free)

How to use
getOrderedTopologicalIterator
method
in
cascading.flow.planner.process.FlowNodeGraph

Best Java code snippets using cascading.flow.planner.process.FlowNodeGraph.getOrderedTopologicalIterator (Showing top 6 results out of 315)

origin: cwensel/cascading

public FlowNodeGraph( FlowNodeFactory flowNodeFactory, FlowElementGraph flowElementGraph, List<? extends ElementGraph> nodeSubGraphs, Map<ElementGraph, List<? extends ElementGraph>> pipelineSubGraphsMap )
 {
 buildGraph( flowNodeFactory, flowElementGraph, nodeSubGraphs, pipelineSubGraphsMap );
 // consistently sets ordinal of node based on topological dependencies and tie breaking by the given Comparator
 Iterator<FlowNode> iterator = getOrderedTopologicalIterator();
 int ordinal = 0;
 int size = vertexSet().size();
 while( iterator.hasNext() )
  {
  BaseFlowNode next = (BaseFlowNode) iterator.next();
  next.setOrdinal( ordinal );
  next.setName( flowNodeFactory.makeFlowNodeName( next, size, ordinal ) );
  ordinal++;
  }
 }
origin: cascading/cascading-hadoop2-tez-stats

Iterator<FlowNode> iterator = flowStep.getFlowNodeGraph().getOrderedTopologicalIterator();
origin: cwensel/cascading

Iterator<FlowNode> iterator = flowStep.getFlowNodeGraph().getOrderedTopologicalIterator();
origin: cwensel/cascading

Iterator<FlowNode> iterator = flowNodeGraph.getOrderedTopologicalIterator();
origin: cascading/cascading-hadoop2-tez

Iterator<FlowNode> iterator = nodeGraph.getOrderedTopologicalIterator(); // ordering of nodes for consistent remote debugging
origin: cwensel/cascading

Iterator<FlowNode> iterator = nodeGraph.getOrderedTopologicalIterator(); // ordering of nodes for consistent remote debugging
cascading.flow.planner.processFlowNodeGraphgetOrderedTopologicalIterator

Popular methods of FlowNodeGraph

  • edgeSet
  • vertexSet
  • getElementGraphs
  • <init>
  • addVertex
  • getTopologicalIterator
  • addEdge
  • getEdge
  • getEdgeSource
  • getEdgeTarget
  • getElementSourceProcesses
  • inDegreeOf
  • getElementSourceProcesses,
  • inDegreeOf,
  • incomingEdgesOf,
  • outgoingEdgesOf,
  • bindEdges,
  • buildGraph,
  • getAnnotations,
  • getFlowElementsFor,
  • getSinkElements

Popular in Java

  • Reading from database using SQL prepared statement
  • getSystemService (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • scheduleAtFixedRate (Timer)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now