Package javax.microedition.io
Interface DatagramConnection
-
- All Superinterfaces:
Connection
public interface DatagramConnection extends Connection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaximumLength()intgetNominalLength()DatagramnewDatagram(byte[] var0, int var1)DatagramnewDatagram(byte[] var0, int var1, String var2)DatagramnewDatagram(int var0)DatagramnewDatagram(int var0, String var1)voidreceive(Datagram var0)voidsend(Datagram var0)-
Methods inherited from interface javax.microedition.io.Connection
close
-
-
-
-
Method Detail
-
getMaximumLength
int getMaximumLength() throws IOException- Throws:
IOException
-
getNominalLength
int getNominalLength() throws IOException- Throws:
IOException
-
newDatagram
Datagram newDatagram(byte[] var0, int var1) throws IOException
- Throws:
IOException
-
newDatagram
Datagram newDatagram(byte[] var0, int var1, String var2) throws IOException
- Throws:
IOException
-
newDatagram
Datagram newDatagram(int var0) throws IOException
- Throws:
IOException
-
newDatagram
Datagram newDatagram(int var0, String var1) throws IOException
- Throws:
IOException
-
receive
void receive(Datagram var0) throws IOException
- Throws:
IOException
-
send
void send(Datagram var0) throws IOException
- Throws:
IOException
-
-