IPWorks EDI 2020 Python Edition

Questions / Feedback?

on_ack_out Event

Fires immediately before sending an acknowledgement to the server.

Syntax

class MLLPClientAckOutEventParams(object):
  @property
  def accept() -> bool: ...
  @accept.setter
  def accept(value) -> None: ...

# In class MLLPClient:
@property
def on_ack_out() -> Callable[[MLLPClientAckOutEventParams], None]: ...
@on_ack_out.setter
def on_ack_out(event_hook: Callable[[MLLPClientAckOutEventParams], None]) -> None: ...

Remarks

This event fires immediately before the class sends an acknowledgement to the MLLP server.

The Accept parameter should be set to indicate whether the class should send a positive (ACK - True) or negative (NAK - False) acknowledgement. The default is True.

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