blob: 58c5d210dfb270775b0ab8f0b1b3dae9e6af48f7 (
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.command.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);
}
}
|