Home | History | Annotate | Download | only in bullet

Lines Matching refs:executor

26     protected ScheduledThreadPoolExecutor executor;
71 if (executor != null) {
72 executor.shutdown();
74 executor = new ScheduledThreadPoolExecutor(1);
86 return executor.submit(call).get();
110 executor.schedule(detachedPhysicsUpdate, Math.round(getPhysicsSpace().getAccuracy() * 1000000.0f) - (update * 1000), TimeUnit.MICROSECONDS);
129 // executor.submit(detachedPhysicsUpdate);
183 physicsFuture = executor.submit(parallelPhysicsUpdate);
204 if (executor != null) {
205 executor.shutdown();
206 executor = null;