All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gojek.courier.Message.kt Maven / Gradle / Ivy

The newest version!
package com.gojek.courier

sealed class Message {
    /**
     * Represents a binary message.
     *
     * @property value The binary data.
     */
    class Bytes(val value: ByteArray) : Message() {
        operator fun component1(): ByteArray = value
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy