| Package | Description | 
|---|---|
| agi.foundation.compatibility | 
| Modifier and Type | Method and Description | 
|---|---|
static Action | 
Action.combine(Action a,
       Action b)
Combines two delegate instances, forming a new delegate that will invoke both
 delegates when invoked. 
 | 
static Action | 
Action.of(Action.Function f)
Create a delegate for the given interface. 
 | 
static Action | 
Action.of(Action.Function f,
  Class<?> targetClass,
  String methodName,
  Class<?>... methodParameterClasses)
Create a delegate for the given interface. 
 | 
static Action | 
Action.of(Action.Function f,
  Object targetObject,
  String methodName,
  Class<?>... methodParameterClasses)
Create a delegate for the given interface. 
 | 
static Action | 
Action.remove(Action source,
      Action value)
Removes one delegate from another, if it was previously combined. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Action | 
Action.combine(Action a,
       Action b)
Combines two delegate instances, forming a new delegate that will invoke both
 delegates when invoked. 
 | 
static Action | 
Action.remove(Action source,
      Action value)
Removes one delegate from another, if it was previously combined. 
 |