IPWorks EDI 2020 Kotlin Edition

Questions / Feedback?

AckIn Event

Fires immediately after receiving an acknowledgement from a client.

Syntax

public open class DefaultMllpserverEventListener : MllpserverEventListener {
  ...
  public override fun ackIn(e: MllpserverAckInEvent) {}
  ...
}

public class MllpserverAckInEvent {
  val connectionId: String?
  val accepted: Boolean
}

Remarks

This event fires immediately after receiving an acknowledgement (positive or negative) from an MLLP client.

The ConnectionId parameter reflects the Id of the connection that the acknowledgement was received on.

The Accepted parameter reflects whether the acknowledgement is positive (ACK - True) or negative (NAK - False).

Anytime a negative acknowledgement is received, the component will report an error with code 670.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks EDI 2020 Kotlin Edition - Version 20.0 [Build 8033]