blob: 29f2b47d28db96820cff87f12f0388e7977a26d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package org.traccar.database;
import org.jboss.netty.channel.Channel;
import org.traccar.Protocol;
import org.traccar.http.commands.GpsCommand;
import java.net.SocketAddress;
public class ActiveDevice {
private String uniqueId;
private Protocol protocol;
private Channel channel;
private SocketAddress remoteAddress;
public ActiveDevice(String uniqueId, Protocol protocol, Channel channel, SocketAddress remoteAddress) {
this.uniqueId = uniqueId;
this.protocol = protocol;
this.channel = channel;
this.remoteAddress = remoteAddress;
}
public Channel getChannel() {
return channel;
}
public String getUniqueId() {
return uniqueId;
}
public void sendCommand(GpsCommand command) {
protocol.sendCommand(this, command);
}
public void write(Object message) {
getChannel().write(message, remoteAddress);
}
}
|