Lint
This commit is contained in:
parent
a3126b0026
commit
8a62dfb34a
|
@ -22,11 +22,15 @@ import org.matrix.android.sdk.api.rendezvous.model.RendezvousTransportDetails
|
||||||
|
|
||||||
interface RendezvousTransport {
|
interface RendezvousTransport {
|
||||||
var ready: Boolean
|
var ready: Boolean
|
||||||
|
|
||||||
@Throws(RendezvousError::class)
|
@Throws(RendezvousError::class)
|
||||||
suspend fun details(): RendezvousTransportDetails
|
suspend fun details(): RendezvousTransportDetails
|
||||||
|
|
||||||
@Throws(RendezvousError::class)
|
@Throws(RendezvousError::class)
|
||||||
suspend fun send(contentType: MediaType, data: ByteArray)
|
suspend fun send(contentType: MediaType, data: ByteArray)
|
||||||
|
|
||||||
@Throws(RendezvousError::class)
|
@Throws(RendezvousError::class)
|
||||||
suspend fun receive(): ByteArray?
|
suspend fun receive(): ByteArray?
|
||||||
|
|
||||||
suspend fun close()
|
suspend fun close()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue