Much work on generalizing the notion of message "transport" and
allowing the use of annotations to customize transport for DObject fields and service/receiver methods. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5099 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -46,6 +46,19 @@ public class EventNotification extends DownstreamMessage
|
||||
return _event;
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public void setTransport (Transport transport)
|
||||
{
|
||||
// the event handles the transport
|
||||
_event.setTransport(transport);
|
||||
}
|
||||
|
||||
@Override // documentation inherited
|
||||
public Transport getTransport ()
|
||||
{
|
||||
return _event.getTransport();
|
||||
}
|
||||
|
||||
public String toString ()
|
||||
{
|
||||
return "[type=EVT, evt=" + _event + "]";
|
||||
|
||||
Reference in New Issue
Block a user