Skip to content

Java — dev.tape:tape

<dependency>
  <groupId>dev.tape</groupId>
  <artifactId>tape</artifactId>
  <version>0.1.0</version>
</dependency>
import dev.tape.DurableApp;

try (DurableApp app = DurableApp.wire(new DurableApp.Config()
        .name("treasury")
        .budget(new DurableApp.Budget(50.0, 2_000_000)))) {
    var run = app.client().beginRun(
        app.name(), "cfo", "s1", "inv-1", app.leaseOwner(), app.leaseTtlMs());
}

The full Javadoc is generated by mvn javadoc:javadoc and embedded as a sibling site:

It opens in a new tab because Javadoc's framed layout doesn't play nice with MkDocs Material's single-page navigation.