fixed some formatting typos
[vimdoclet.git] / sample / java.util.concurrent.RunnableScheduledFuture.txt
blob7a3bc872cff0905ee3e42fbd45579cdebee1e232
1 *java.util.concurrent.RunnableScheduledFuture* *RunnableScheduledFuture* ASchedu
3 public interface interface RunnableScheduledFuture<V>
5   implements |java.util.concurrent.RunnableFuture|
6              |java.util.concurrent.ScheduledFuture|
8 |java.util.concurrent.RunnableScheduledFuture_Description|
9 |java.util.concurrent.RunnableScheduledFuture_Fields|
10 |java.util.concurrent.RunnableScheduledFuture_Constructors|
11 |java.util.concurrent.RunnableScheduledFuture_Methods|
13 ================================================================================
15 *java.util.concurrent.RunnableScheduledFuture_Methods*
16 |java.util.concurrent.RunnableScheduledFuture.isPeriodic()|Returns true if this
18 *java.util.concurrent.RunnableScheduledFuture_Description*
20 A (|java.util.concurrent.ScheduledFuture|) that is (|java.lang.Runnable|) . 
21 Successful execution of the run method causes completion of the Future and 
22 allows access to its results. 
26 *java.util.concurrent.RunnableScheduledFuture.isPeriodic()*
28 public boolean isPeriodic()
30 Returns true if this is a periodic task. A periodic task may re-run according 
31 to some schedule. A non-periodic task can be run only once. 
35     Returns: true if this task is periodic