Tabnine Logo
DispatchStack.layerBelow
Code IndexAdd Tabnine to your IDE (free)

How to use
layerBelow
method
in
org.apache.taverna.workflowmodel.processor.dispatch.DispatchStack

Best Java code snippets using org.apache.taverna.workflowmodel.processor.dispatch.DispatchStack.layerBelow (Showing top 3 results out of 315)

origin: org.apache.taverna.engine/taverna-workflowmodel-api

protected final DispatchLayer<?> getBelow() {
  return dispatchStack.layerBelow(this);
}
origin: org.apache.taverna.engine/taverna-workflowmodel-api

@Override
public void receiveJobQueue(DispatchJobQueueEvent jobQueueEvent) {
  DispatchLayer<?> below = dispatchStack.layerBelow(this);
  if (below != null)
    below.receiveJobQueue(jobQueueEvent);
}
origin: org.apache.taverna.engine/taverna-workflowmodel-api

@Override
public void receiveJob(DispatchJobEvent jobEvent) {
  DispatchLayer<?> below = dispatchStack.layerBelow(this);
  if (below != null)
    below.receiveJob(jobEvent);
}
org.apache.taverna.workflowmodel.processor.dispatchDispatchStacklayerBelow

Javadoc

Return the layer below (higher index) the specified layer, or null if there is no layer below this one.

Popular methods of DispatchStack

  • getLayers
    The DispatchStack consists of an ordered list of DispatchLayer instances where the DispatchLayer at
  • getProcessor
    The dispatch stack is contained within a processor, this can be null if the stack is being used out
  • layerAbove
    Return the layer above (lower index!) the specified layer, or a reference to the internal top layer
  • receiveMonitorableProperty
    The dispatch stack acts as an aggregator for monitorable properties exposed by the dispatch layers.

Popular in Java

  • Reactive rest calls using spring rest template
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • onRequestPermissionsResult (Fragment)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Notification (javax.management)
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Sublime Text plugins
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