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

org.webbitserver.EventSourceConnection Maven / Gradle / Ivy

package org.webbitserver;

public interface EventSourceConnection extends HttpConnection {
    EventSourceConnection send(EventSourceMessage message);

    // Override methods to provide more specific return type.

    @Override
    EventSourceConnection close();

    @Override
    EventSourceConnection data(String key, Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy