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

How to use
terminate
method
in
com.obsidiandynamics.worker.WorkerThread

Best Java code snippets using com.obsidiandynamics.worker.WorkerThread.terminate (Showing top 8 results out of 315)

origin: com.obsidiandynamics.fulcrum/fulcrum-flow

/**
 *  Terminates the flow, shutting down the worker thread and preventing further 
 *  task executions.
 *  
 *  @return A {@link Joinable} for the caller to wait on.
 */
@Override
public Joinable terminate() {
 executor.terminate();
 return this;
}

origin: com.obsidiandynamics.hazelq/hazelq-elect

@Override
public Joinable terminate() {
 scavengerThread.terminate();
 return this;
}
origin: com.obsidiandynamics.meteor/meteor-elect

@Override
public Joinable terminate() {
 scavengerThread.terminate();
 return this;
}
origin: com.obsidiandynamics.meteor/meteor-core

@Override
public Joinable terminate() {
 publishThread.terminate();
 return this;
}
origin: com.obsidiandynamics.meteor/meteor-core

@Override
public Joinable terminate() {
 pollerThread.terminate();
 return this;
}
origin: com.obsidiandynamics.fulcrum/fulcrum-scheduler

/**
 *  Terminates the scheduler, shutting down the worker thread and preventing further 
 *  task executions.
 *  
 *  @return A {@link Joinable} for the caller to wait on.
 */
@Override
public Joinable terminate() {
 executor.terminate();
 return this;
}

origin: com.obsidiandynamics.jackdaw/jackdaw-core

@Override
public Joinable terminate() {
 return thread.terminate();
}
origin: com.obsidiandynamics.blackstrom/blackstrom-core

 @Override
 public void dispose() {
  thread.terminate().joinSilently();
 }
}
com.obsidiandynamics.workerWorkerThreadterminate

Javadoc

Terminates the worker thread.

Popular methods of WorkerThread

  • builder
  • join
  • start
    Starts the worker thread.
  • <init>
  • cycle
  • getState
    Obtains the current state of the worker thread.
  • handleUncaughtException
  • whileNotInterrupted

Popular in Java

  • Creating JSON documents from java classes using gson
  • getExternalFilesDir (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top plugins for Android Studio
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