Package akka.io
Interface Inet.SocketOptionV2
-
- All Superinterfaces:
Inet.SocketOption
- All Known Implementing Classes:
Inet.AbstractSocketOptionV2
- Enclosing class:
- Inet
public static interface Inet.SocketOptionV2 extends Inet.SocketOption
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterBind(java.net.DatagramSocket s)
Action to be taken for this option after connect returned.void
afterBind(java.net.ServerSocket s)
Action to be taken for this option after connect returned.void
afterConnect(java.net.DatagramSocket s)
Action to be taken for this option after connect returned.-
Methods inherited from interface akka.io.Inet.SocketOption
afterConnect, beforeConnect, beforeDatagramBind, beforeServerSocketBind
-
-
-
-
Method Detail
-
afterBind
void afterBind(java.net.DatagramSocket s)
Action to be taken for this option after connect returned.
-
afterBind
void afterBind(java.net.ServerSocket s)
Action to be taken for this option after connect returned.
-
afterConnect
void afterConnect(java.net.DatagramSocket s)
Action to be taken for this option after connect returned.
-
-