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

com.github.nkzawa.socketio.parser.Packet Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package com.github.nkzawa.socketio.parser;


public class Packet {

    public int type = -1;
    public int id = -1;
    public String nsp;
    public T data;
    public int attachments;

    public Packet() {}

    public Packet(int type) {
        this.type = type;
    }

    public Packet(int type, T data) {
        this.type = type;
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy