| Package | Description | 
|---|---|
| agi.foundation | 
 Contains commonly used types. 
 | 
| agi.foundation.compatibility | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
TransactionContext.doTransactionally(Action1<Transaction> callback)
Executes the provided callback within a transaction, and automatically commits the
    transaction when the callback returns. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static <T> Action1<T> | 
Action1.of(Action1.Function<T> f)
Create a delegate for the given interface. 
 | 
static <T> Action1<T> | 
Action1.of(Action1.Function<T> f,
  Class<?> targetClass,
  String methodName,
  Class<?>... methodParameterClasses)
Create a delegate for the given interface. 
 | 
static <T> Action1<T> | 
Action1.of(Action1.Function<T> f,
  Object targetObject,
  String methodName,
  Class<?>... methodParameterClasses)
Create a delegate for the given interface. 
 |