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 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package ca.odell.glazedlists.impl.rbp;
// NIO is used for BRP
/**
* Maintains the state for a particular resource on a particular connection.
*
* @author <a href="mailto:jesse@swank.ca">Jesse Wilson</a>
*/
class ResourceConnection {
/** the connection */
private PeerConnection connection;
/** the resource */
private PeerResource resource;
/** the resource's current update */
private int updateId = -1;
/**
* Create a new {@link ResourceConnection} to manage the state of the specified
* connection and resource.
*/
public ResourceConnection(PeerConnection connection, PeerResource resource) {
this.connection = connection;
this.resource = resource;
}
/**
* The current update of this resource connection.
*/
public void setUpdateId(int updateId) {
this.updateId = updateId;
}
public int getUpdateId() {
return updateId;
}
/**
* Gets the connection that is interested in this resource.
*/
public PeerConnection getConnection() {
return connection;
}
/**
* Gets the resource that is attached to this connection.
*/
public PeerResource getResource() {
return resource;
}
}
|