rice.environment.processing
Class WorkRequest<R>
java.lang.Object
rice.environment.processing.WorkRequest<R>
- All Implemented Interfaces:
- Runnable, Cancellable
public abstract class WorkRequest<R>
- extends Object
- implements Runnable, Cancellable
Extend this class and implement doWork() if you need to do blocking disk IO.
This is primarily used by Persistence.
- Author:
- Jeff Hoye
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
cancelled
protected boolean cancelled
running
protected boolean running
WorkRequest
public WorkRequest(Continuation<R,Exception> c,
SelectorManager sm)
WorkRequest
public WorkRequest()
returnResult
public void returnResult(R o)
returnError
public void returnError(Exception e)
run
public void run()
- Specified by:
run in interface Runnable
cancel
public boolean cancel()
- Specified by:
cancel in interface Cancellable
- Returns:
- true if it was cancelled, false if it was already complete, or cancelled.
doWork
public abstract R doWork()
throws Exception
- Throws:
Exception
Copyright © 2010. All Rights Reserved.