dorkbox.network.aeron.mediaDriver.MediaDriverConnectInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Network Show documentation
Show all versions of Network Show documentation
Encrypted, high-performance, and event-driven/reactive network stack for Java 6+
package dorkbox.network.aeron.mediaDriver
import io.aeron.Publication
import io.aeron.Subscription
import java.net.InetAddress
data class MediaDriverConnectInfo(val subscription: Subscription,
val publication: Publication,
val subscriptionPort: Int,
val publicationPort: Int,
val streamId: Int,
val sessionId: Int,
val isReliable: Boolean,
val remoteAddress: InetAddress?,
val remoteAddressString: String,
)