SocketStreamRecorder

from panda3d.core import SocketStreamRecorder
class SocketStreamRecorder

Bases:

Bases: RecorderBase, ReferenceCount

Records any data received from the indicated socket stream. On playback, it will act as if the incoming data is coming over the wire again even if an actual connection is not available.

Outbound data will not be recorded, but will be sent straight through to the socket if it is connected, or silently ignored if it is not.

Inheritance diagram

Inheritance diagram of SocketStreamRecorder

__init__()
__init__(stream: SocketStream, owns_stream: bool)
close()

See SocketStream.close().

considerFlush() bool

See SocketStream.considerFlush()

flush() bool

See SocketStream.flush()

static getClassType() TypeHandle
getCollectTcp() bool

See SocketStream.getCollectTcp().

getCollectTcpInterval() float

See SocketStream.getCollectTcpInterval().

isClosed() bool

See SocketStream.isClosed().

receiveDatagram(dg: Datagram) bool

Receives a datagram over the socket by expecting a little-endian 16-bit byte count as a prefix. If the socket stream is non-blocking, may return false if the data is not available; otherwise, returns false only if the socket closes.

sendDatagram(dg: Datagram) bool

See SocketStream.sendDatagram().

setCollectTcp(collect_tcp: bool)

See SocketStream.setCollectTcp().

setCollectTcpInterval(interval: float)

See SocketStream.setCollectTcpInterval().