IPWorks IoT 2020 Python Edition

Questions / Feedback?

ready_to_send Property

Indicates whether the class is ready to send data.

Syntax

def get_ready_to_send() -> bool: ...

ready_to_send = property(get_ready_to_send, None)

Default Value

FALSE

Remarks

This property indicates that the underlying TCP/IP subsystem is ready to accept data. This is True after connecting to the remote host, and will become False if a call to send_message fails due to a WOULDBLOCK condition.

Once data can be sent again, the on_ready_to_send event will fire and this property will be True.

If a WOULDBLOCK error occurs while sending a message the class will automatically complete the transmission when sending is possible. No action needs to be taken to re-send the message. on_ready_to_send will fire after the class completes any partially sent messages.

This property is read-only.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks IoT 2020 Python Edition - Version 20.0 [Build 8265]