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

org.logdoc.fairhttp.helpers.SocketConsumer Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.logdoc.fairhttp.helpers;

import org.logdoc.fairhttp.structs.SocketMessage;

/**
 * @author Denis Danilin | [email protected]
 * 06.01.2023 15:47
 * fairhttp ☭ sweat and blood
 */
public interface SocketConsumer {
    void onMessage(SocketMessage message);
    default void onClose(int code, String reason, boolean remote) {}

    default boolean autoJsonParse() {
        return false;
    }

    default boolean autoXmlParse() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy