All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cucumber.core.eventbus.EventBus Maven / Gradle / Ivy

The newest version!
package io.cucumber.core.eventbus;

import io.cucumber.plugin.event.EventPublisher;

import java.time.Instant;
import java.util.UUID;

public interface EventBus extends EventPublisher {

    Instant getInstant();

    UUID generateId();

     void send(T event);

     void sendAll(Iterable queue);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy