blob: 29baf0b86111926c3848ccefdbdf72b615f94ac0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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;
}
}
|