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

  • Creating JSON documents from java classes using gson
  • requestLocationUpdates (LocationManager)
  • setContentView (Activity)
  • getSharedPreferences (Context)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JButton (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • 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