congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
AbstractInterpreter.getPublishEmitLevelMonitoring
Code IndexAdd Tabnine to your IDE (free)

How to use
getPublishEmitLevelMonitoring
method
in
jadex.kernelbase.AbstractInterpreter

Best Java code snippets using jadex.kernelbase.AbstractInterpreter.getPublishEmitLevelMonitoring (Showing top 1 results out of 315)

origin: net.sourceforge.jadex/jadex-kernel-base

/**
 *  Check if event targets exist.
 */
public boolean hasEventTargets(PublishTarget pt, PublishEventLevel pi)
{
  boolean ret = false;
  
  if(pi.getLevel()<=getPublishEmitLevelSubscriptions().getLevel() 
    && (PublishTarget.TOALL.equals(pt) || PublishTarget.TOSUBSCRIBERS.equals(pt)))
  {
    ret = subscriptions!=null && !subscriptions.isEmpty();
  }
  if(!ret && pi.getLevel()<=getPublishEmitLevelMonitoring().getLevel()
    && (PublishTarget.TOALL.equals(pt) || PublishTarget.TOMONITORING.equals(pt)))
  {
    ret = true;
  }
  
  return ret;
}
 
jadex.kernelbaseAbstractInterpretergetPublishEmitLevelMonitoring

Javadoc

Get the monitoring event emit level.

Popular methods of AbstractInterpreter

  • createServiceContainer
    Create the service container.
  • initService
  • terminateServiceContainer
  • addSubscription
    Add a new subscription.
  • createExternalAccess
    Create the external access instance.
  • getComponentAdapter
    Get the component adapter.
  • getComponentDescription
  • getComponentIdentifier
  • getCurrentStateEvents
  • getFetcher
    Get the value fetcher.
  • getInternalAccess
  • getPublishEmitLevelSubscriptions
    Get the monitoring event emit level for subscriptions. Is the maximum level of all subscriptions (ca
  • getInternalAccess,
  • getPublishEmitLevelSubscriptions,
  • initComponents,
  • isRealtime,
  • publishLocalEvent,
  • removeSubscription,
  • startBehavior

Popular in Java

  • Reading from database using SQL prepared statement
  • findViewById (Activity)
  • getContentResolver (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • JButton (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • CodeWhisperer alternatives
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