Repeatable persisted operation
| 23 | * |
| 24 | */ |
| 25 | public interface Repo<T> extends ReadOnlyRepo<T>, Serializable { |
| 26 | |
| 27 | Repo<T> call(long tid, T environment) throws Exception; |
| 28 | |
| 29 | void undo(long tid, T environment) throws Exception; |
| 30 | |
| 31 | // this allows the last fate op to return something to the user |
| 32 | String getReturn(); |
| 33 | } |
no outgoing calls
no test coverage detected