Tabnine Logo
EventGrounding.setTransportProtocols
Code IndexAdd Tabnine to your IDE (free)

How to use
setTransportProtocols
method
in
org.streampipes.model.grounding.EventGrounding

Best Java code snippets using org.streampipes.model.grounding.EventGrounding.setTransportProtocols (Showing top 4 results out of 315)

origin: streampipes/streampipes-ce

/**
 * Assigns supported communication/transport protocols to the pipeline elements that can be handled at runtime (e.g.,
 * Kafka or JMS).
 * @param protocols A list of supported {@link org.streampipes.model.grounding.TransportProtocol}s. Use
 *                {@link org.streampipes.sdk.helpers.SupportedProtocols} to assign protocols from some pre-defined
 *                 ones or create your own by following the developer guide.
 * @return this
 */
public BU supportedProtocols(List<TransportProtocol> protocols) {
 this.supportedGrounding.setTransportProtocols(protocols);
 return me();
}
origin: org.streampipes/streampipes-pipeline-management

public EventGrounding getEventGrounding() {
  EventGrounding grounding = new EventGrounding();
  grounding.setTransportFormats(Arrays.asList(getFormat()));
  grounding.setTransportProtocols(Arrays.asList(getProtocol()));
  return grounding;
}
origin: streampipes/streampipes-ce

public EventGrounding getEventGrounding() {
  EventGrounding grounding = new EventGrounding();
  grounding.setTransportFormats(Arrays.asList(getFormat()));
  grounding.setTransportProtocols(Arrays.asList(getProtocol()));
  return grounding;
}
origin: streampipes/streampipes-ce

  public static EventGrounding getSupportedGrounding()
  {
    EventGrounding grounding = new EventGrounding();
    grounding.setTransportFormats(standardFormat());
    grounding.setTransportProtocols(standardProtocols());
    return grounding;
  }
}
org.streampipes.model.groundingEventGroundingsetTransportProtocols

Popular methods of EventGrounding

  • getTransportProtocol
  • <init>
  • setTransportProtocol
  • setTransportFormats
  • getTransportFormats
  • getTransportProtocols

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • startActivity (Activity)
  • getSharedPreferences (Context)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • 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