on_end_transfer Event

Fired when the article text completes transferring.

Syntax

class NNTPEndTransferEventParams(object):
  @property
  def direction() -> int: ...

# In class NNTP:
@property
def on_end_transfer() -> Callable[[NNTPEndTransferEventParams], None]: ...
@on_end_transfer.setter
def on_end_transfer(event_hook: Callable[[NNTPEndTransferEventParams], None]) -> None: ...

Remarks

The purpose of the on_end_transfer event is twofold: during article retrieval it fires when the article body finishes transferring from the news_server to the local host, and during article posting it fires after the article body has been sent to the news_server.

If article_text is not empty, the on_end_transfer event is fired when the article_text finishes transferring from the local host to the news_server. If article_text is empty, the event is not fired.

If a file is attached to the article_text via the attached_file property, then on_end_transfer fires again when the file finishes transferring. Please go to the description of the attached_file property for more information.

The Direction parameter shows whether the client (0) or the server (1) is sending the data.

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