From bceb1dc65e65b952737c88005e081efb6585e5a6 Mon Sep 17 00:00:00 2001 From: pedroSG94 Date: Fri, 18 Oct 2024 18:23:34 +0200 Subject: [PATCH] update docs --- .../com.pedro.common.socket/-tcp-stream-socket/index.html | 2 +- .../com.pedro.common.socket/-tcp-stream-socket/write.html | 2 +- docs/scripts/pages.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/common/com.pedro.common.socket/-tcp-stream-socket/index.html b/docs/common/com.pedro.common.socket/-tcp-stream-socket/index.html index b10130929..838cdf385 100644 --- a/docs/common/com.pedro.common.socket/-tcp-stream-socket/index.html +++ b/docs/common/com.pedro.common.socket/-tcp-stream-socket/index.html @@ -308,7 +308,7 @@

Functions

-
suspend fun write(b: ByteArray)
suspend fun write(b: Int)
suspend fun write(string: String)
suspend fun write(b: ByteArray, offset: Int, size: Int)
+
suspend fun write(b: ByteArray): Unit?
suspend fun write(b: Int): Unit?
suspend fun write(string: String): Unit?
suspend fun write(b: ByteArray, offset: Int, size: Int): Unit?
diff --git a/docs/common/com.pedro.common.socket/-tcp-stream-socket/write.html b/docs/common/com.pedro.common.socket/-tcp-stream-socket/write.html index adff7dacc..b273eae32 100644 --- a/docs/common/com.pedro.common.socket/-tcp-stream-socket/write.html +++ b/docs/common/com.pedro.common.socket/-tcp-stream-socket/write.html @@ -63,7 +63,7 @@

write

-
suspend fun write(b: Int)
suspend fun write(b: ByteArray)
suspend fun write(b: ByteArray, offset: Int, size: Int)
suspend fun write(string: String)
+
suspend fun write(b: Int): Unit?
suspend fun write(b: ByteArray): Unit?
suspend fun write(b: ByteArray, offset: Int, size: Int): Unit?
suspend fun write(string: String): Unit?