Tabnine Logo
Engine.getProperty
Code IndexAdd Tabnine to your IDE (free)

How to use
getProperty
method
in
com.linkedin.parseq.Engine

Best Java code snippets using com.linkedin.parseq.Engine.getProperty (Showing top 4 results out of 315)

origin: linkedin/parseq

public Object getEngineProperty(String key) {
 return _engine.getProperty(key);
}
origin: linkedin/parseq

 _maxRelationshipsPerTrace = (Integer) getProperty(MAX_RELATIONSHIPS_PER_TRACE);
} else {
 _maxRelationshipsPerTrace = DEFUALT_MAX_RELATIONSHIPS_PER_TRACE;
 _maxConcurrentPlans = (Integer) getProperty(MAX_CONCURRENT_PLANS);
} else {
 _maxConcurrentPlans = DEFUALT_MAX_CONCURRENT_PLANS;
 _drainSerialExecutorQueue = (Boolean) getProperty(DRAIN_SERIAL_EXECUTOR_QUEUE);
} else {
 _drainSerialExecutorQueue = DEFAULT_DRAIN_SERIAL_EXECUTOR_QUEUE;
 maxMonitors = (Integer) getProperty(MAX_EXECUTION_MONITORS);
 durationThresholdNano = (Long) getProperty(EXECUTION_MONITOR_DURATION_THRESHOLD_NANO);
 checkIntervalNano = (Long) getProperty(EXECUTION_MONITOR_CHECK_INTERVAL_NANO);
 idleDurationNano = (Long) getProperty(EXECUTION_MONITOR_IDLE_DURATION_NANO);
 loggingIntervalNano = (Long) getProperty(EXECUTION_MONITOR_LOGGING_INTERVAL_NANO);
 minStallNano = (Long) getProperty(EXECUTION_MONITOR_MIN_STALL_NANO);
 stallsHistorySize = (Integer) getProperty(EXECUTION_MONITOR_STALLS_HISTORY_SIZE);
 level = (Level) getProperty(EXECUTION_MONITOR_LOG_LEVEL);
 monitorExecution = (Boolean) getProperty(MONITOR_EXECUTION);
origin: com.linkedin.parseq/parseq

public Object getEngineProperty(String key) {
 return _engine.getProperty(key);
}
origin: com.linkedin.parseq/parseq

 _maxRelationshipsPerTrace = (Integer) getProperty(MAX_RELATIONSHIPS_PER_TRACE);
} else {
 _maxRelationshipsPerTrace = DEFUALT_MAX_RELATIONSHIPS_PER_TRACE;
 _maxConcurrentPlans = (Integer) getProperty(MAX_CONCURRENT_PLANS);
} else {
 _maxConcurrentPlans = DEFUALT_MAX_CONCURRENT_PLANS;
 _drainSerialExecutorQueue = (Boolean) getProperty(DRAIN_SERIAL_EXECUTOR_QUEUE);
} else {
 _drainSerialExecutorQueue = DEFAULT_DRAIN_SERIAL_EXECUTOR_QUEUE;
 maxMonitors = (Integer) getProperty(MAX_EXECUTION_MONITORS);
 durationThresholdNano = (Long) getProperty(EXECUTION_MONITOR_DURATION_THRESHOLD_NANO);
 checkIntervalNano = (Long) getProperty(EXECUTION_MONITOR_CHECK_INTERVAL_NANO);
 idleDurationNano = (Long) getProperty(EXECUTION_MONITOR_IDLE_DURATION_NANO);
 loggingIntervalNano = (Long) getProperty(EXECUTION_MONITOR_LOGGING_INTERVAL_NANO);
 minStallNano = (Long) getProperty(EXECUTION_MONITOR_MIN_STALL_NANO);
 stallsHistorySize = (Integer) getProperty(EXECUTION_MONITOR_STALLS_HISTORY_SIZE);
 level = (Level) getProperty(EXECUTION_MONITOR_LOG_LEVEL);
 monitorExecution = (Boolean) getProperty(MONITOR_EXECUTION);
com.linkedin.parseqEnginegetProperty

Popular methods of Engine

  • run
    Runs the given task. Task passed in as a parameter becomes a root on a new Plan. All tasks created a
  • shutdown
    If the engine is currently running, this method will initiate an orderly shutdown. No new tasks will
  • blockingRun
    Runs the given task. Task passed in as a parameter becomes a root on a new Plan. All tasks created a
  • tryRun
    Runs the given task if Engine has a capacity to start new plan as specified by #MAX_CONCURRENT_PLANS
  • <init>
  • acquirePermit
  • createTaskQueueFactory
  • defaultPlanClass
  • runWithPermit
    Runs the given task with its own context. Use Tasks.seq and Tasks.par to create and run composite ta
  • tryAcquirePermit
  • tryTransitionShutdown
  • tryTransitionTerminate
  • tryTransitionShutdown,
  • tryTransitionTerminate,
  • awaitTermination,
  • isShutdown,
  • isTerminated

Popular in Java

  • Creating JSON documents from java classes using gson
  • runOnUiThread (Activity)
  • setRequestProperty (URLConnection)
  • getApplicationContext (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • From CI to AI: The AI layer in your organization
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