Home | History | Annotate | Download | only in udp

Lines Matching refs:endpoint

123     public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable,
147 protected Endpoint getEndpoint( SocketAddress address, boolean create )
169 log.log( Level.INFO, "Closing endpoint:{0}.", p );
187 // So the tricky part here is figuring out the endpoint and
192 Endpoint p = getEndpoint( packet.getSocketAddress(), true );
202 protected void enqueueWrite( Endpoint endpoint, DatagramPacket packet )
204 writer.execute( new MessageWriter(endpoint, packet) );
209 private Endpoint endpoint;
212 public MessageWriter( Endpoint endpoint, DatagramPacket packet )
214 this.endpoint = endpoint;
222 if( !endpoint.isConnected() ) {