public NetworkContextImpl(UdpCourierNetwork udpCourierNetwork, INetworkingProxy networkingProxy, UdpCourierNetworkConfiguration configuration, ReadableCourierEndpoint endpoint)
 {
     this.udpCourierNetwork = udpCourierNetwork;
     this.networkingProxy   = networkingProxy;
     this.configuration     = configuration;
     this.endpoint          = endpoint;
 }
 public UdpCourierNetwork(INetworkingProxy networkingProxy, UdpCourierNetworkConfiguration configuration)
 {
     this.networkingProxy = networkingProxy;
     this.configuration   = configuration;
 }