18 lines
No EOL
397 B
Java
18 lines
No EOL
397 B
Java
package zutil.network.nio.worker;
|
|
|
|
import java.nio.channels.SocketChannel;
|
|
|
|
import zutil.network.nio.NioNetwork;
|
|
|
|
|
|
public class WorkerDataEvent {
|
|
public NioNetwork network;
|
|
public SocketChannel socket;
|
|
public Object data;
|
|
|
|
public WorkerDataEvent(NioNetwork server, SocketChannel socket, Object data) {
|
|
this.network = server;
|
|
this.socket = socket;
|
|
this.data = data;
|
|
}
|
|
} |