congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
BasicExecutionEventListener.ignoreEvent
Code IndexAdd Tabnine to your IDE (free)

How to use
ignoreEvent
method
in
org.milyn.event.BasicExecutionEventListener

Best Java code snippets using org.milyn.event.BasicExecutionEventListener.ignoreEvent (Showing top 8 results out of 315)

origin: org.milyn/milyn-smooks-core

/**
 * Process the {@link ExecutionEvent}.
 * @param event The {@link ExecutionEvent}.
 */
public void onEvent(ExecutionEvent event) {
  if(ignoreEvent(event)) {
    // Don't capture this event...
    return;
  }
  if(event != null) {
    events.add(event);
  } else {
    logger.warn("Invalid call to onEvent method.  null 'event' arg.");
  }
}
origin: org.milyn/milyn-smooks-all

/**
 * Process the {@link ExecutionEvent}.
 * @param event The {@link ExecutionEvent}.
 */
public void onEvent(ExecutionEvent event) {
  if(ignoreEvent(event)) {
    // Don't capture this event...
    return;
  }
  if(event != null) {
    events.add(event);
  } else {
    logger.warn("Invalid call to onEvent method.  null 'event' arg.");
  }
}
origin: smooks/smooks

/**
 * Process the {@link ExecutionEvent}.
 * @param event The {@link ExecutionEvent}.
 */
public void onEvent(ExecutionEvent event) {
  if(ignoreEvent(event)) {
    // Don't capture this event...
    return;
  }
  if(event != null) {
    events.add(event);
  } else {
    logger.warn("Invalid call to onEvent method.  null 'event' arg.");
  }
}
origin: org.virtuslab/milyn-smooks-core

/**
 * Process the {@link ExecutionEvent}.
 * @param event The {@link ExecutionEvent}.
 */
public void onEvent(ExecutionEvent event) {
  if(ignoreEvent(event)) {
    // Don't capture this event...
    return;
  }
  if(event != null) {
    events.add(event);
  } else {
    logger.warn("Invalid call to onEvent method.  null 'event' arg.");
  }
}
origin: smooks/smooks

protected boolean ignoreEvent(ExecutionEvent event) {
  if(!super.ignoreEvent(event)) {
    if (event instanceof ResourceBasedEvent) {
      if (!reportConfiguration.showDefaultAppliedResources()) {
        return ((ResourceBasedEvent) event).getResourceConfig().isDefaultResource();
      }
    }
    return false;
  }
  return true;
}
origin: org.milyn/milyn-smooks-core

protected boolean ignoreEvent(ExecutionEvent event) {
  if(!super.ignoreEvent(event)) {
    if (event instanceof ResourceBasedEvent) {
      if (!reportConfiguration.showDefaultAppliedResources()) {
        return ((ResourceBasedEvent) event).getResourceConfig().isDefaultResource();
      }
    }
    return false;
  }
  return true;
}
origin: org.milyn/milyn-smooks-all

protected boolean ignoreEvent(ExecutionEvent event) {
  if(!super.ignoreEvent(event)) {
    if (event instanceof ResourceBasedEvent) {
      if (!reportConfiguration.showDefaultAppliedResources()) {
        return ((ResourceBasedEvent) event).getResourceConfig().isDefaultResource();
      }
    }
    return false;
  }
  return true;
}
origin: org.virtuslab/milyn-smooks-core

protected boolean ignoreEvent(ExecutionEvent event) {
  if(!super.ignoreEvent(event)) {
    if (event instanceof ResourceBasedEvent) {
      if (!reportConfiguration.showDefaultAppliedResources()) {
        return ((ResourceBasedEvent) event).getResourceConfig().isDefaultResource();
      }
    }
    return false;
  }
  return true;
}
org.milyn.eventBasicExecutionEventListenerignoreEvent

Popular methods of BasicExecutionEventListener

  • evalReportCondition

Popular in Java

  • Reading from database using SQL prepared statement
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • String (java.lang)
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now