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

com.payneteasy.socketio.SocketIoEvent Maven / Gradle / Ivy

There is a newer version: 1.0-8
Show newest version
package com.payneteasy.socketio;

/**
 *
 */
public class SocketIoEvent {

    public SocketIoEvent(String aName, Object ... aArgs) {
        name = aName;
        args = aArgs;
    }

    public final String name;
    public final Object[] args;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy