Searched defs:execute (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DExecutor.java20 * executor.execute(new RunnableTask1());
21 * executor.execute(new RunnableTask2());
32 * public void execute(Runnable r) {
43 * public void execute(Runnable r) {
63 * public synchronized void execute(final Runnable r) {
80 * executor.execute(active);
103 * may execute in a new thread, in a pooled thread, or in the calling
111 void execute(Runnable command); method in interface:Executor
H A DExecutors.java53 * execute subsequent tasks. The threads in the pool will exist
113 * needed to execute subsequent tasks. The threads in the pool will
134 * shutdown, a new one will take its place if needed to execute
135 * subsequent tasks.) Tasks are guaranteed to execute
176 * of programs that execute many short-lived asynchronous tasks.
177 * Calls to {@code execute} will reuse previously constructed
212 * to run after a given delay, or to execute periodically.
215 * shutdown, a new one will take its place if needed to execute
216 * subsequent tasks.) Tasks are guaranteed to execute
230 * to run after a given delay, or to execute periodicall
583 public void execute(Runnable command) { e.execute(command); } method in class:Executors.DelegatedExecutorService
[all...]
H A DScheduledThreadPoolExecutor.java20 * commands to run after a given delay, or to execute
26 * <p>Delayed tasks execute no sooner than they are enabled, but
56 * {@link ThreadPoolExecutor#execute(Runnable) execute} and
66 * types used to execute commands entered via {@code execute},
102 * those submitted using ExecutorService execute, not
158 /** The time the task is enabled to execute in nanoTime units */
360 * Modifies or replaces the task used to execute a runnable.
366 * @param task the task created to execute th
591 public void execute(Runnable command) { method in class:ScheduledThreadPoolExecutor
[all...]
H A DThreadPoolExecutor.java53 * When a new task is submitted in method {@link #execute(Runnable)},
85 * continue, but might not be able to execute any tasks.</dd>
171 * <dd>New tasks submitted in method {@link #execute(Runnable)} will be
174 * capacity, and is saturated. In either case, the {@code execute} method
187 * that invokes {@code execute} itself runs the task. This provides a
481 * Handler called when saturated or shutdown in execute.
852 * (in method execute()) to bypass queuing when there are fewer
1152 * tasks submitted by the {@code execute} method.
1183 * tasks submitted by the {@code execute} method.
1218 * tasks submitted by the {@code execute} metho
1302 public void execute(Runnable command) { method in class:ThreadPoolExecutor
[all...]
H A DForkJoinPool.java33 * execute tasks submitted to the pool and/or created by other active
88 * <td> {@link #execute(ForkJoinTask)}</td>
325 * execute. When a submission is added or another worker adds a
372 * Helping: Arranging for the joiner to execute some task that it
381 * a possible action of a compensator is to steal and execute the
395 * find a worker to help (i.e., steal back a task from and execute
928 * Tries to poll for and execute the given task or any other
956 * Tries to pop and execute the given task or any other task
1789 * Tries to locate and execute tasks for a stealer of the given
1793 * execute task
2500 public void execute(ForkJoinTask<?> task) { method in class:ForkJoinPool
2513 public void execute(Runnable task) { method in class:ForkJoinPool
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DSchemePrefixBenchmark.java29 @Override String execute(String spec) {
60 @Override String execute(String spec) {
71 abstract String execute(String spec); method in class:SchemePrefixBenchmark.Strategy
78 strategy.execute("http://android.com");
/libcore/jsr166-tests/src/test/java/jsr166/
H A DAbstractExecutorServiceTest.java25 public void execute(Runnable r) { r.run(); } method in class:AbstractExecutorServiceTest.DirectExecutorService
40 * execute(runnable) runs it to completion
149 * execute(null runnable) throws NPE
/libcore/luni/src/main/java/java/sql/
H A DStatement.java146 * the SQL statement to execute
153 public boolean execute(String sql) throws SQLException; method in interface:Statement
165 * the SQL statement to execute.
177 public boolean execute(String sql, int autoGeneratedKeys) method in interface:Statement
190 * the SQL statement to execute.
201 public boolean execute(String sql, int[] columnIndexes) throws SQLException; method in interface:Statement
213 * the SQL statement to execute.
224 public boolean execute(String sql, String[] columnNames) method in interface:Statement
229 * update counts, if all the commands execute successfully.
263 * an SQL statement to execute
[all...]
H A DPreparedStatement.java62 * A {@code PreparedStatement} may return multiple results. The execute
75 public boolean execute() throws SQLException; method in interface:PreparedStatement
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java116 public void execute() throws SQLException; method in interface:RowSet
176 * Therefore it should be set prior to invoking the {@link #execute} method.
235 * database and should be set before the {@code execute} method is invoked.
789 * query which runs when the {@code execute} method is invoked. This
1423 * set prior to invoking the {@link #execute} method.

Completed in 252 milliseconds