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

com.lightningkite.rx.okhttp.WebSocketFrame.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.rx.okhttp


/**
 * A single frame of a web socket.
 */
class WebSocketFrame(val binary: ByteArray? = null, val text: String? = null) {
    override fun toString(): String {
        return text ?: binary?.let { ""
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy