io.p8e.functional.ContractEventHandler.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of p8e-sdk Show documentation
Show all versions of p8e-sdk Show documentation
A collection of services and libraries that iteract and run Provenance Java based contracts.
package io.p8e.functional
import io.p8e.proxy.Contract
import io.p8e.spec.P8eContract
@FunctionalInterface
interface ContractEventHandler {
fun handle(contract: Contract): Boolean
}