com.lightningkite.rx.okhttp.WebSocketFrame.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okhttp-jackson Show documentation
Show all versions of okhttp-jackson Show documentation
An OkHttp wrapper based on RxJava using Jackson for JSON
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