Package | Description |
---|---|
messif.executor |
Support for automatic execution by reflection.
|
Modifier and Type | Class and Description |
---|---|
class |
MethodThread
This class allows the background method execution (i.e. in a new thread)
using the MethodExecutor interface.
|
class |
SingleMethodExecutor
A single
Executable method. |
Modifier and Type | Method and Description |
---|---|
MethodThread |
MethodExecutor.backgroundExecute(java.lang.Object[] arguments,
Executable executeBefore,
Executable executeAfter)
Execute a registered method by arguments on background.
|
MethodThread |
MethodThreadList.backgroundExecute(java.lang.Object[] arguments,
Executable executeBefore,
Executable executeAfter)
Execute registered method by arguments on background.
|
Modifier and Type | Method and Description |
---|---|
MethodThread |
MethodExecutor.backgroundExecute(java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Execute a registered method by arguments on background.
|
MethodThread |
MethodExecutor.backgroundExecute(java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Execute a registered method by arguments on background.
|
MethodThread |
MethodThreadList.backgroundExecute(java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Execute registered method by arguments on background.
|
MethodThread |
MethodThreadList.backgroundExecute(java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Execute registered method by arguments on background.
|
Constructor and Description |
---|
MethodThread(java.lang.reflect.Method method,
java.lang.Object object,
java.lang.Object[] arguments,
Executable executeBefore,
Executable executeAfter)
Create new instance of MethodThread
The constructor can't be called directly, use backgroundExecute "factory" member of MethodExecutor
|
Constructor and Description |
---|
MethodThread(java.lang.reflect.Method method,
java.lang.Object object,
java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Create new instance of MethodThread
The constructor can't be called directly, use backgroundExecute "factory" member of MethodExecutor
|
MethodThread(java.lang.reflect.Method method,
java.lang.Object object,
java.lang.Object[] arguments,
java.util.List<Executable> executeBefore,
java.util.List<Executable> executeAfter)
Create new instance of MethodThread
The constructor can't be called directly, use backgroundExecute "factory" member of MethodExecutor
|