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

com.firefly.net.tcp.codec.MessageHandler Maven / Gradle / Ivy

There is a newer version: 5.0.0-dev6
Show newest version
package com.firefly.net.tcp.codec;

import com.firefly.utils.function.Action1;

public interface MessageHandler {

    void receive(R obj);

    MessageHandler complete(Action1 action);

    MessageHandler exception(Action1 exception);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy