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

link.jfire.socket.socketserver.bus.BusinessCommand Maven / Gradle / Ivy

Go to download

Jfire - socket is a server-side framework based on AIO. Users only need a simple implementation of a business logic processing interface can be the business data processing. The framework provides the client and server at the same time. Have strong connection capacity. Single server provides tens of thousands of connections.

The newest version!
package link.jfire.socket.socketserver.bus;

public class BusinessCommand
{
    public static final byte SERVER_STATUS   = (byte) 0xd1;
    public static final byte CLEAR_BUFFER    = (byte) 0xd2;
    public static final byte TEST_SERVER     = (byte) 0xd3;
    public static final byte CONNECT_TEST    = (byte) 0Xd4;
    public static final byte ECHO            = (byte) 0xd5;
    public static final byte AUTH           = (byte) 0xd6;
    public static final byte SENDKEY         = (byte) 0xd7;
    public static final byte SERVER_INFO     = (byte) 0xd8;
    public static final byte REQUEST_SUCCESS = (byte) 0x80;
    public static final byte REQUEST_FAIL    = (byte) 0x81;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy