Tabnine Logo
OutputPort.eventTypes
Code IndexAdd Tabnine to your IDE (free)

How to use
eventTypes
method
in
kieker.analysis.plugin.annotation.OutputPort

Best Java code snippets using kieker.analysis.plugin.annotation.OutputPort.eventTypes (Showing top 6 results out of 315)

origin: kieker-monitoring/kieker

if (outputPort.eventTypes().length == 0) {
  outEventTypes = new Class<?>[] { Object.class };
} else {
  outEventTypes = outputPort.eventTypes();
final String allowedOutputTypes = Arrays.toString(outputPort.eventTypes());
final String allowedInputTypes = Arrays.toString(inputPort.eventTypes());
LOGGER.warn("Output port '{}' ({}) is not compatible with input port '{}' ({}).", output, allowedOutputTypes, input, allowedInputTypes);
origin: net.kieker-monitoring/kieker

if (outputPort.eventTypes().length == 0) {
  outEventTypes = new Class<?>[] { Object.class };
} else {
  outEventTypes = outputPort.eventTypes();
final String allowedOutputTypes = Arrays.toString(outputPort.eventTypes());
final String allowedInputTypes = Arrays.toString(inputPort.eventTypes());
LOG.warn("Output port '" + output + "' (" + allowedOutputTypes + ") is not compatible with input port '" + input + "' (" + allowedInputTypes
origin: kieker-monitoring/kieker

  this.logger.error("Two OutputPorts use the same name: {}", outputPort.name());
Class<?>[] outTypes = outputPort.eventTypes();
if (outTypes.length == 0) {
  outTypes = new Class<?>[] { Object.class };
origin: kieker-monitoring/kieker

final InputPort ip = m.getAnnotation(InputPort.class);
if ((ip != null) && (m.getParameterTypes().length == 1) && ip.name().equals(inputPortName)) {
  src.outputPorts.get(outputPortName).eventTypes();
  java.security.AccessController.doPrivileged(new PrivilegedAction<Object>() {
    @Override
origin: net.kieker-monitoring/kieker

final InputPort ip = m.getAnnotation(InputPort.class);
if ((ip != null) && (m.getParameterTypes().length == 1) && ip.name().equals(inputPortName)) {
  src.outputPorts.get(outputPortName).eventTypes();
  java.security.AccessController.doPrivileged(new PrivilegedAction<Object>() {
    @Override
origin: net.kieker-monitoring/kieker

  this.log.error("Two OutputPorts use the same name: " + outputPort.name());
Class<?>[] outTypes = outputPort.eventTypes();
if (outTypes.length == 0) {
  outTypes = new Class<?>[] { Object.class };
kieker.analysis.plugin.annotationOutputPorteventTypes

Popular methods of OutputPort

  • <init>
  • name

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getApplicationContext (Context)
  • runOnUiThread (Activity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Kernel (java.awt.image)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • JList (javax.swing)
  • IsNull (org.hamcrest.core)
    Is the value null?
  • 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