blob: bc38e35e483670b9e550f7eb4f208fcde97021be (
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
|
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;
}
public Communicator getCommunicator() {
return communicator;
}
public Address getExpectedAddress() {
return expectedAddress;
}
}
|