1 2 20 21 package javax.microedition.io; 22 23 import java.io.IOException; 24 25 26 public interface DatagramConnection extends Connection 27 { 28 29 int getMaximumLength() 30 throws IOException; 31 32 int getNominalLength() 33 throws IOException; 34 35 void send(Datagram dgram) 36 throws IOException; 37 38 void receive(Datagram dgram) 39 throws IOException; 40 41 Datagram newDatagram(int size) 42 throws IOException; 43 44 Datagram newDatagram(int size, String addr) 45 throws IOException; 46 47 Datagram newDatagram(byte[] buf, int size) 48 throws IOException; 49 50 Datagram newDatagram(byte[] buf, int size, String addr) 51 throws IOException; 52 53 } 54 | Popular Tags |