com.github.kpavlov.jreactive8583.iso.MTI.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netty-iso8583 Show documentation
Show all versions of netty-iso8583 Show documentation
ISO8583 protocol client and server Netty connectors.
@file:JvmName("MTI")
package com.github.kpavlov.jreactive8583.iso
public object MTI {
@JvmStatic
public fun mtiValue(
iso8583Version: ISO8583Version,
messageClass: MessageClass,
messageFunction: MessageFunction,
messageOrigin: MessageOrigin
): Int = (
iso8583Version.value +
messageClass.value +
messageFunction.value +
messageOrigin.value
)
}