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

How to use
shutdown
method
in
us.ihmc.util.PeriodicThreadScheduler

Best Java code snippets using us.ihmc.util.PeriodicThreadScheduler.shutdown (Showing top 7 results out of 315)

origin: us.ihmc/CommonWalkingControlModules

@Override
public void closeAndDispose()
{
 if (scheduler != null)
   scheduler.shutdown();
}
origin: us.ihmc/SensorProcessing

  public void stop()
  {
   scheduler.shutdown();
  }
}
origin: us.ihmc/ihmc-ros2-library

/**
* Stop the realtime periodic thread.
*/
public void stopSpinning()
{
 scheduler.shutdown();
 startupLock.lock();
 spinning = false;
}
origin: us.ihmc/ihmc-robot-data-logger

public void stop()
{
 scheduler.shutdown();
 try
 {
   scheduler.awaitTermination(1, TimeUnit.SECONDS);
 }
 catch (InterruptedException e)
 {
 }
}

origin: us.ihmc/ihmc-robot-data-logger

public void stop()
{
 scheduler.shutdown();
 try
 {
   scheduler.awaitTermination(5, TimeUnit.SECONDS);
 }
 catch (InterruptedException e)
 {
   e.printStackTrace();
 }
}
origin: us.ihmc/IHMCRobotDataLogger

  public void close()
  {
   scheduler.shutdown();
   server.close();
   
  }
}
origin: us.ihmc/RobotDataCommunication

  public void close()
  {
   scheduler.shutdown();
   server.close();
   
  }
}
us.ihmc.utilPeriodicThreadSchedulershutdown

Javadoc

Shutdown the periodic thread. No new runnables can be scheduled. Running threads are allowed to finish execution the current execution.

Popular methods of PeriodicThreadScheduler

  • schedule
    Schedule a new periodic thread
  • awaitTermination
    Await termination of this thread. This will not stop the running thread. The timeout is optionally i

Popular in Java

  • Updating database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • getSystemService (Context)
  • setContentView (Activity)
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Path (java.nio.file)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Top 15 Vim Plugins
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