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

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

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

origin: cwensel/cascading

private void addInputOutputMapping( JobConf conf, FlowNode flowNode )
 {
 FlowNodeGraph flowNodeGraph = getFlowNodeGraph();
 Set<ProcessEdge> incomingEdges = flowNodeGraph.incomingEdgesOf( flowNode );
 for( ProcessEdge processEdge : incomingEdges )
  conf.set( "cascading.node.source." + processEdge.getFlowElementID(), processEdge.getSourceProcessID() );
 Set<ProcessEdge> outgoingEdges = flowNodeGraph.outgoingEdgesOf( flowNode );
 for( ProcessEdge processEdge : outgoingEdges )
  conf.set( "cascading.node.sink." + processEdge.getFlowElementID(), processEdge.getSinkProcessID() );
 }
origin: cascading/cascading-hadoop2-tez

private void addInputOutputMapping( JobConf conf, FlowNode flowNode )
 {
 FlowNodeGraph flowNodeGraph = getFlowNodeGraph();
 Set<ProcessEdge> incomingEdges = flowNodeGraph.incomingEdgesOf( flowNode );
 for( ProcessEdge processEdge : incomingEdges )
  conf.set( "cascading.node.source." + processEdge.getFlowElementID(), processEdge.getSourceProcessID() );
 Set<ProcessEdge> outgoingEdges = flowNodeGraph.outgoingEdgesOf( flowNode );
 for( ProcessEdge processEdge : outgoingEdges )
  conf.set( "cascading.node.sink." + processEdge.getFlowElementID(), processEdge.getSinkProcessID() );
 }
cascading.flow.planner.processFlowNodeGraphoutgoingEdgesOf

Popular methods of FlowNodeGraph

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

Popular in Java

  • Finding current android device location
  • startActivity (Activity)
  • findViewById (Activity)
  • compareTo (BigDecimal)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top plugins for WebStorm
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