org.tron.p2p.connection.business.MessageProcess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libp2p Show documentation
Show all versions of libp2p Show documentation
libp2p is a p2p network SDK implemented in java language.
The newest version!
package org.tron.p2p.connection.business;
import org.tron.p2p.connection.Channel;
import org.tron.p2p.connection.message.Message;
public interface MessageProcess {
void processMessage(Channel channel, Message message);
}