blob: dd56c14e5521d12ab97d8613ec6965b51ff800cb (
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
38
39
40
41
|
package org.reprap.comms;
// TODO add support for specifying command byte as well
public class IncomingContext {
/**
*
*/
private Communicator communicator;
/**
*
*/
private Address expectedAddress;
/**
*
* @param communicator The communicator to receive messages from
* @param address Address to receive messages from (null for any)
*/
public IncomingContext(Communicator communicator, Address address) {
expectedAddress = address;
this.communicator = communicator;
}
/**
* @return communicator
*/
public Communicator getCommunicator() {
return communicator;
}
/**
* @return expectedAddress
*/
public Address getExpectedAddress() {
return expectedAddress;
}
}
|