Package com.jcabi.aspects.aj
Class MethodScheduler
- java.lang.Object
-
- com.jcabi.aspects.aj.MethodScheduler
-
public final class MethodScheduler extends Object
Schedules methods.- Since:
- 0.7.16
-
-
Constructor Summary
Constructors Constructor Description MethodScheduler()Ctor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose(org.aspectj.lang.JoinPoint point)Stop/close a routine task.voidinstantiate(org.aspectj.lang.JoinPoint point)Instantiate a new routine task.
-
-
-
Method Detail
-
instantiate
public void instantiate(org.aspectj.lang.JoinPoint point)
Instantiate a new routine task.Try NOT to change the signature of this method, in order to keep it backward compatible.
- Parameters:
point- Joint point
-
close
public void close(org.aspectj.lang.JoinPoint point)
Stop/close a routine task.Try NOT to change the signature of this method, in order to keep it backward compatible.
- Parameters:
point- Joint point
-
-