Type Params | Return Type | Name and description |
---|---|---|
|
static java.lang.Runnable |
getAfterPluginCall() @return the afterPluginCall Runnable, or a no-op Runnable if not set. |
|
static java.lang.Runnable |
getOnPluginCall() @return the onPluginCall Runnable, or a no-op Runnable if not set. |
|
static void |
runAfterPluginCall(java.lang.Runnable runnable) Sets a Runnable to run after every plugin call. |
|
static void |
runBeforePluginCall(java.lang.Runnable runnable) Sets a Runnable to run before every plugin call. |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Sets a Runnable to run after every plugin call.
This method may only be called once.runnable
- execute after a plugin callSets a Runnable to run before every plugin call.
This method may only be called once.runnable
- execute before a plugin call