package com.juick.jabber.ws; import java.nio.channels.SocketChannel; /** * * @author ugnich */ public class SocketSubscribed { public SocketChannel sock = null; public int UID = 0; public int MID = 0; public long tsConnected = 0; public long tsLastData = 0; public SocketSubscribed(SocketChannel sock, int UID, int MID) { this.sock = sock; this.UID = UID; this.MID = MID; } }