Interface AsynchronousManagedObject
-
- All Superinterfaces:
ManagedObject
- All Known Implementing Classes:
AccessControlManagedObjectSource.AccessControlManagedObject
,HttpSessionManagedObject
,TestManagedObject
,TestObject
public interface AsynchronousManagedObject extends ManagedObject
Contract to provide control over asynchronous processing by the
ManagedObject
.Implemented by the
ManagedObjectSource
provider.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setAsynchronousContext(AsynchronousContext context)
Provides theAsynchronousContext
to theAsynchronousManagedObject
to enable call back to notify state and completion of asynchronous processing.-
Methods inherited from interface net.officefloor.frame.api.managedobject.ManagedObject
getObject
-
-
-
-
Method Detail
-
setAsynchronousContext
void setAsynchronousContext(AsynchronousContext context)
Provides theAsynchronousContext
to theAsynchronousManagedObject
to enable call back to notify state and completion of asynchronous processing.- Parameters:
context
-AsynchronousContext
.
-
-