com.obsidiandynamics.blackstrom.handler.DefaultInitContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blackstrom-core Show documentation
Show all versions of blackstrom-core Show documentation
Transactional event fabric for the JVM
The newest version!
package com.obsidiandynamics.blackstrom.handler;
import com.obsidiandynamics.blackstrom.ledger.*;
public final class DefaultInitContext implements InitContext {
private final Ledger ledger;
public DefaultInitContext(Ledger ledger) {
this.ledger = ledger;
}
@Override
public Ledger getLedger() {
return ledger;
}
}