class IReactorUNIXDatagram(Interface): (source)
Known implementations: twisted.internet.posixbase.PosixReactorBase
| Method | connectUNIXDatagram |
Connect a client protocol to a datagram UNIX socket. |
| Method | listenUNIXDatagram |
Listen on a datagram UNIX socket. |
| Parameters | |
address:str | a path to a unix socket on the filesystem. |
protocol:ConnectedDatagramProtocol | a twisted.internet.protocol.ConnectedDatagramProtocol instance |
maxPacketSize:int | maximum packet size to accept |
mode:int | The mode (not umask) to set on the unix socket. See platform specific documentation for information about how this might affect connection attempts. |
bindAddress:Optional[ | address to bind to |
| Returns | |
IConnector | An object which provides IConnector. |
| Parameters | |
address:str | a path to a unix socket on the filesystem. |
protocol:DatagramProtocol | a twisted.internet.protocol.DatagramProtocol instance. |
maxPacketSize:int | maximum packet size to accept |
mode:int | The mode (not umask) to set on the unix socket. See platform specific documentation for information about how this might affect connection attempts. |
| Returns | |
IListeningPort | An object which provides IListeningPort. |