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

bt.torrent.messaging.MessageRouter Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package bt.torrent.messaging;

import bt.protocol.Message;

import java.util.function.Consumer;

public interface MessageRouter {

    void consume(Message message, MessageContext context);

    void produce(Consumer messageConsumer, MessageContext context);

    void registerMessagingAgent(Object agent);

    void unregisterMessagingAgent(Object agent);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy