* source. This {@link EventList} will contain no data until the connection
* completes. This list is not writable.
*/
public NetworkList subscribe(String host, int port, String path, ByteCoder byteCoder) {
NetworkList subscribed = new NetworkList(new BasicEventList(), byteCoder);
ResourceStatus resourceStatus = peer.subscribe(subscribed.getResource(), host, port, path);
subscribed.setResourceStatus(resourceStatus);
return subscribed;
}