org.enodeframework.eventing.IEventProcessContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.eventing;
import java.util.concurrent.CompletableFuture;
/**
* Represents the event processing context.
*/
public interface IEventProcessContext {
/**
* Notify the event has been processed.
*/
CompletableFuture notifyEventProcessed();
}