diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html index 3e2d772..3731f3e 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html @@ -74,7 +74,7 @@

Functions

-
open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?

Streamをpublishします。

+
open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?

Streamをpublishします。既にpublish中のStreamは指定することができません。

@@ -89,7 +89,7 @@

Functions

-
open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?

open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?

Publicationをsubscribeします。

+
open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?

open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?

Publicationをsubscribeします。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

@@ -181,7 +181,7 @@

Properties

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

@@ -196,7 +196,7 @@

Properties

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

@@ -271,7 +271,7 @@

Properties

-
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このLocalPersonがsubscribeした時に発火するハンドラ。

+
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このLocalPersonがsubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html index 47110b7..6ae1b7c 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html @@ -27,7 +27,7 @@

metadata

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html index b8cfd2e..c40b9d5 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html @@ -27,7 +27,7 @@

name

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html index 9d2e349..190177a 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このLocalPersonがsubscribeした時に発火するハンドラ。

+
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このLocalPersonがsubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html index 694c75b..0c52c35 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html @@ -27,7 +27,7 @@

publish

-
open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?

Streamをpublishします。

+
open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?

Streamをpublishします。既にpublish中のStreamは指定することができません。

Parameters

localStream

publishするStream。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html index fd5588d..1866c59 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html @@ -27,7 +27,7 @@

subscribe

-
open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?

Publicationをsubscribeします。


open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?
+
open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?

Publicationをsubscribeします。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。


open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/index.html index dca3be8..e3710b5 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/index.html @@ -74,7 +74,7 @@

Functions

-
abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?

Streamをpublishします。

+
abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?

Streamをpublishします。既にpublish中のStreamは指定することができません。

@@ -89,7 +89,7 @@

Functions

-
abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?

abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?

Publicationをsubscribeします。

+
abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?

abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?

Publicationをsubscribeします。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

@@ -181,7 +181,7 @@

Properties

-
abstract val metadata: String

このMemberのMetadata。

+
abstract val metadata: String?

このMemberのMetadata。

@@ -196,7 +196,7 @@

Properties

-
abstract val name: String

このMemberの名前。

+
abstract val name: String?

このMemberの名前。

@@ -271,7 +271,7 @@

Properties

-
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このLocalPersonがsubscribeした時に発火するハンドラ。

+
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このLocalPersonがsubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html index 9093181..f3b193f 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このLocalPersonがsubscribeした時に発火するハンドラ。

+
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このLocalPersonがsubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/publish.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/publish.html index 071ce29..5128808 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/publish.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/publish.html @@ -27,7 +27,7 @@

publish

-
abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?

Streamをpublishします。

+
abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?

Streamをpublishします。既にpublish中のStreamは指定することができません。

Parameters

localStream

publishするStream。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html index f85928b..d81b4fe 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html @@ -27,7 +27,7 @@

subscribe

-
abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?

Publicationをsubscribeします。


abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?
+
abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?

Publicationをsubscribeします。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。


abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html index 8974497..c75e592 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html @@ -22,12 +22,12 @@
-
+

Dto

-
fun Dto(channel: Channel, id: String, name: String, nativePointer: Long)
+
fun Dto(channel: Channel, id: String, name: String?, nativePointer: Long)
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/index.html index f267754..8f6f452 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/index.html @@ -26,7 +26,7 @@

Dto

-
data class Dto(channel: Channel, id: String, name: String, nativePointer: Long)
+
data class Dto(channel: Channel, id: String, name: String?, nativePointer: Long)
@@ -72,7 +72,7 @@

Properties

-
val name: String
+
val name: String?
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/name.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/name.html index c835039..7bd4779 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-dto/name.html @@ -27,7 +27,7 @@

name

-
val name: String
+
val name: String?
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html index 45ce512..2c859fc 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html @@ -22,12 +22,12 @@
-
+

Init

-
fun Init(name: String, metadata: String? = "", keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = "")
+
fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = "")
diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/index.html index aa02a03..c5cb0dd 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/index.html @@ -26,23 +26,23 @@

Init

-
data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)

Memberの初期設定。

+
data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)

Memberの初期設定。

Constructors

-
+
- +
Link copied to clipboard
-
fun Init(name: String, metadata: String? = "", keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = "")
+
fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = "")
@@ -74,7 +74,7 @@

Properties

-
val metadata: String?

Metadata。

+
val metadata: String? = null

Metadata。

@@ -89,7 +89,7 @@

Properties

-
val name: String

名前。

+
val name: String? = null

名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html index b889dfa..eebb554 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html @@ -27,7 +27,7 @@

metadata

-
val metadata: String?

Metadata。

+
val metadata: String? = null

Metadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/name.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/name.html index ce3d4c9..70b4467 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/-init/name.html @@ -27,7 +27,7 @@

name

-
val name: String

名前。

+
val name: String? = null

名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/index.html index 088a645..9e3104b 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/index.html @@ -42,7 +42,7 @@

Types

-
data class Dto(channel: Channel, id: String, name: String, nativePointer: Long)
+
data class Dto(channel: Channel, id: String, name: String?, nativePointer: Long)
@@ -57,7 +57,7 @@

Types

-
data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)

Memberの初期設定。

+
data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)

Memberの初期設定。

@@ -181,7 +181,7 @@

Properties

-
abstract val metadata: String

このMemberのMetadata。

+
abstract val metadata: String?

このMemberのMetadata。

@@ -196,7 +196,7 @@

Properties

-
abstract val name: String

このMemberの名前。

+
abstract val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/metadata.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/metadata.html index c5e8b83..9b16a12 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/metadata.html @@ -27,7 +27,7 @@

metadata

-
abstract val metadata: String

このMemberのMetadata。

+
abstract val metadata: String?

このMemberのMetadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-member/name.html b/docs/core/core/com.ntt.skyway.core.channel.member/-member/name.html index f509e6f..6566d1b 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-member/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-member/name.html @@ -27,7 +27,7 @@

name

-
abstract val name: String

このMemberの名前。

+
abstract val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html index 819056f..f2b4182 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html @@ -121,7 +121,7 @@

Properties

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

@@ -136,7 +136,7 @@

Properties

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html index 94acdc5..05bf1fd 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html @@ -27,7 +27,7 @@

metadata

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html index c46a8f1..0326e90 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html @@ -27,7 +27,7 @@

name

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member/index.html b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member/index.html index 9abc5e8..d52f70d 100644 --- a/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel.member/-remote-member/index.html @@ -121,7 +121,7 @@

Properties

-
abstract val metadata: String

このMemberのMetadata。

+
abstract val metadata: String?

このMemberのMetadata。

@@ -136,7 +136,7 @@

Properties

-
abstract val name: String

このMemberの名前。

+
abstract val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/index.html b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/index.html index 569f997..0e7ab53 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/index.html @@ -196,7 +196,7 @@

Properties

-
open override val metadata: String

このChannelのMetadata。

+
open override val metadata: String?

このChannelのMetadata。

@@ -211,7 +211,7 @@

Properties

-
open override val name: String

このChannelの名前。

+
open override val name: String?

このChannelの名前。

@@ -406,7 +406,7 @@

Properties

-
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。

+
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/metadata.html b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/metadata.html index bf6bf10..0a3054d 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/metadata.html @@ -27,7 +27,7 @@

metadata

-
open override val metadata: String

このChannelのMetadata。

+
open override val metadata: String?

このChannelのMetadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/name.html b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/name.html index eb57625..3526aa5 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/name.html @@ -27,7 +27,7 @@

name

-
open override val name: String

このChannelの名前。

+
open override val name: String?

このChannelの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html index d54b58c..fb24b27 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。

+
open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel/index.html b/docs/core/core/com.ntt.skyway.core.channel/-channel/index.html index 57017a0..0a9f67f 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel/index.html @@ -211,7 +211,7 @@

Properties

-
abstract val metadata: String

このChannelのMetadata。

+
abstract val metadata: String?

このChannelのMetadata。

@@ -226,7 +226,7 @@

Properties

-
abstract val name: String

このChannelの名前。

+
abstract val name: String?

このChannelの名前。

@@ -406,7 +406,7 @@

Properties

-
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。

+
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel/metadata.html b/docs/core/core/com.ntt.skyway.core.channel/-channel/metadata.html index d10989a..f27c748 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel/metadata.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel/metadata.html @@ -27,7 +27,7 @@

metadata

-
abstract val metadata: String

このChannelのMetadata。

+
abstract val metadata: String?

このChannelのMetadata。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel/name.html b/docs/core/core/com.ntt.skyway.core.channel/-channel/name.html index fd2019f..83479e8 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel/name.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel/name.html @@ -27,7 +27,7 @@

name

-
abstract val name: String

このChannelの名前。

+
abstract val name: String?

このChannelの名前。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html index d2533b4..b8f94e6 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。

+
abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?

このChannel内のPublicationがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html index f82665f..40b7217 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html @@ -27,7 +27,7 @@

getStats

-
open override fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

Parameters

remoteMemberId

対象のRemoteMemberのID

+
open override fun getStats(remoteMemberId: String): WebRTCStats?
diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/index.html b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/index.html index 0e713a0..bd716a1 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/index.html @@ -87,7 +87,7 @@

Functions

-
open override fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
open override fun getStats(remoteMemberId: String): WebRTCStats?
@@ -329,7 +329,7 @@

Properties

-
open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null

このPublicationのSubscribeされた時に発火するハンドラ。

+
open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null

このPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html index 9bcc103..36bc001 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html @@ -27,7 +27,7 @@

onSubscribedHandler

-
open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null

このPublicationのSubscribeされた時に発火するハンドラ。

+
open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null

このPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication/get-stats.html b/docs/core/core/com.ntt.skyway.core.channel/-publication/get-stats.html index e64616a..72b4d0b 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication/get-stats.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication/get-stats.html @@ -27,7 +27,7 @@

getStats

-
abstract fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

Parameters

remoteMemberId

対象のRemoteMemberのID

+
abstract fun getStats(remoteMemberId: String): WebRTCStats?
diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication/index.html b/docs/core/core/com.ntt.skyway.core.channel/-publication/index.html index 4b4648f..ce8b728 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication/index.html @@ -119,7 +119,7 @@

Functions

-
abstract fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
abstract fun getStats(remoteMemberId: String): WebRTCStats?
@@ -346,7 +346,7 @@

Properties

-
abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?

このPublicationのSubscribeされた時に発火するハンドラ。

+
abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?

このPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html b/docs/core/core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html index 917a6a4..ea823b8 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html @@ -27,7 +27,7 @@

onSubscribedHandler

-
abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?

このPublicationのSubscribeされた時に発火するハンドラ。

+
abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?

このPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html index e9bd7f0..de0da3a 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html @@ -27,7 +27,7 @@

getStats

-
open override fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
open override fun getStats(): WebRTCStats?
diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/index.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/index.html index ae4abbd..56f9fe4 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/index.html @@ -72,7 +72,7 @@

Functions

-
open override fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
open override fun getStats(): WebRTCStats?
@@ -224,7 +224,7 @@

Properties

-
open override val stream: RemoteStream?

このSubscriptionのStream。

+
open override val stream: RemoteStream?

このSubscriptionのStream。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/stream.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/stream.html index 5ee4772..c7bbc20 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/stream.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription-impl/stream.html @@ -27,7 +27,7 @@

stream

-
open override val stream: RemoteStream?

このSubscriptionのStream。

+
open override val stream: RemoteStream?

このSubscriptionのStream。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription/get-stats.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription/get-stats.html index 46845a9..8a990a5 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription/get-stats.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription/get-stats.html @@ -27,7 +27,7 @@

getStats

-
abstract fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
abstract fun getStats(): WebRTCStats?
diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription/index.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription/index.html index 30e2081..55bfbf5 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription/index.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription/index.html @@ -104,7 +104,7 @@

Functions

-
abstract fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
abstract fun getStats(): WebRTCStats?
@@ -256,7 +256,7 @@

Properties

-
abstract val stream: RemoteStream?

このSubscriptionのStream。

+
abstract val stream: RemoteStream?

このSubscriptionのStream。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.channel/-subscription/stream.html b/docs/core/core/com.ntt.skyway.core.channel/-subscription/stream.html index c805c97..177ff1d 100644 --- a/docs/core/core/com.ntt.skyway.core.channel/-subscription/stream.html +++ b/docs/core/core/com.ntt.skyway.core.channel/-subscription/stream.html @@ -27,7 +27,7 @@

stream

-
abstract val stream: RemoteStream?

このSubscriptionのStream。

+
abstract val stream: RemoteStream?

このSubscriptionのStream。 LocalPerson.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/index.html b/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/index.html index a602401..126a69e 100644 --- a/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/index.html +++ b/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/index.html @@ -134,7 +134,7 @@

Properties

-
var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null
+
var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null
diff --git a/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html b/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html index 15377f5..e933f55 100644 --- a/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html +++ b/docs/core/core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html @@ -27,7 +27,7 @@

onAudioBufferHandler

-
var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null
+
var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null
diff --git a/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html b/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html index d4dad87..5ef13fe 100644 --- a/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html +++ b/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html @@ -26,28 +26,11 @@

WebRTCStatsReport

-
data class WebRTCStatsReport(id: String, type: String, params: Map<String, JsonElement>)

統計情報。

+
data class WebRTCStatsReport(id: String, type: String, params: Map<String, JsonElement>)
-
+
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun WebRTCStatsReport(id: String, type: String, params: Map<String, JsonElement>)
-
-
-
-
-

Properties

diff --git a/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html b/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html index ef12138..5f7f3c4 100644 --- a/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html +++ b/docs/core/core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html @@ -26,28 +26,11 @@

WebRTCStats

-
data class WebRTCStats(reports: List<WebRTCStatsReport>)

統計情報の一覧。

+
data class WebRTCStats(reports: List<WebRTCStatsReport>)
-
+
-

Constructors

-
-
-
-
- - -
Link copied to clipboard
-
-
-
-
fun WebRTCStats(reports: List<WebRTCStatsReport>)
-
-
-
-
-

Properties

diff --git a/docs/core/core/com.ntt.skyway.core.content/index.html b/docs/core/core/com.ntt.skyway.core.content/index.html index 00c0a40..90c5a27 100644 --- a/docs/core/core/com.ntt.skyway.core.content/index.html +++ b/docs/core/core/com.ntt.skyway.core.content/index.html @@ -86,7 +86,7 @@

Types

-
data class WebRTCStats(reports: List<WebRTCStatsReport>)

統計情報の一覧。

+
data class WebRTCStats(reports: List<WebRTCStatsReport>)
@@ -101,7 +101,7 @@

Types

-
data class WebRTCStatsReport(id: String, type: String, params: Map<String, JsonElement>)

統計情報。

+
data class WebRTCStatsReport(id: String, type: String, params: Map<String, JsonElement>)
diff --git a/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/-web-socket-header.html b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/-web-socket-header.html new file mode 100644 index 0000000..6a3fc56 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/-web-socket-header.html @@ -0,0 +1,37 @@ + + + + WebSocketHeader + + + + +
+
+
+
+
+
+ +
+

WebSocketHeader

+
+
fun WebSocketHeader(key: String, value: String)
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/index.html b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/index.html new file mode 100644 index 0000000..fc5b542 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/index.html @@ -0,0 +1,74 @@ + + + + WebSocketHeader + + + + +
+
+
+
+
+
+ +
+

WebSocketHeader

+
class WebSocketHeader(key: String, value: String)
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val key: String
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val value: String
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/key.html b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/key.html new file mode 100644 index 0000000..8b66e31 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/key.html @@ -0,0 +1,37 @@ + + + + key + + + + +
+
+
+
+
+
+ +
+

key

+
+
val key: String
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/value.html b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/value.html new file mode 100644 index 0000000..c45d6d5 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core.network/-web-socket-header/value.html @@ -0,0 +1,37 @@ + + + + value + + + + +
+
+
+
+
+
+ +
+

value

+
+
val value: String
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core.network/index.html b/docs/core/core/com.ntt.skyway.core.network/index.html index 34903f0..e172cee 100644 --- a/docs/core/core/com.ntt.skyway.core.network/index.html +++ b/docs/core/core/com.ntt.skyway.core.network/index.html @@ -76,6 +76,21 @@

Types

+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
class WebSocketHeader(key: String, value: String)
+
+
+
+
diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/-analytics.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/-analytics.html new file mode 100644 index 0000000..a44da13 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/-analytics.html @@ -0,0 +1,37 @@ + + + + Analytics + + + + +
+
+
+
+
+
+ +
+

Analytics

+
+
fun Analytics(domain: String? = null, secure: Boolean? = null)
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/domain.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/domain.html new file mode 100644 index 0000000..c90755f --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/domain.html @@ -0,0 +1,37 @@ + + + + domain + + + + +
+
+
+
+
+
+ +
+

domain

+
+
val domain: String? = null
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/index.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/index.html new file mode 100644 index 0000000..b6c4597 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/index.html @@ -0,0 +1,74 @@ + + + + Analytics + + + + +
+
+
+
+
+
+ +
+

Analytics

+
data class Analytics(domain: String?, secure: Boolean?)
+
+
+
+
+

Properties

+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val domain: String? = null
+
+
+
+
+ +
+
+
+ + +
Link copied to clipboard
+
+
+
+
val secure: Boolean? = null
+
+
+
+
+
+
+
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/secure.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/secure.html new file mode 100644 index 0000000..3739509 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-analytics/secure.html @@ -0,0 +1,37 @@ + + + + secure + + + + +
+
+
+
+
+
+ +
+

secure

+
+
val secure: Boolean? = null
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html index 7c37725..6ed711c 100644 --- a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html @@ -22,12 +22,12 @@
-
+

Options

-
fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)

Parameters

authToken

認証トークン。

logLevel

SkyWayのログレベル。

webRTCLog

SkyWayのログの内、特にWebRTCに関するログを出力するか。

+
fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, analytics: SkyWayContext.Analytics? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)

Parameters

authToken

認証トークン。

logLevel

SkyWayのログレベル。

webRTCLog

SkyWayのログの内、特にWebRTCに関するログを出力するか。

diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/analytics.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/analytics.html new file mode 100644 index 0000000..5811ac5 --- /dev/null +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/analytics.html @@ -0,0 +1,37 @@ + + + + analytics + + + + +
+
+
+
+
+
+ +
+

analytics

+
+
val analytics: SkyWayContext.Analytics? = null
+
+ +
+
+ + + diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/index.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/index.html index 8588aac..b55ffb1 100644 --- a/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/index.html +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/-options/index.html @@ -26,7 +26,7 @@

Options

-
data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)

SkyWayの利用に関する設定。

+
data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, analytics: SkyWayContext.Analytics?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)

SkyWayの利用に関する設定。

@@ -36,24 +36,39 @@

Parameters

authToken

認証トークン。

logLevel

SkyWayのログレベル。

webRTCLog

SkyWayのログの内、特にWebRTCに関するログを出力するか。

Constructors

-
+
- +
Link copied to clipboard
-
fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)
+
fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, analytics: SkyWayContext.Analytics? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)

Properties

-
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
val analytics: SkyWayContext.Analytics? = null
+
+
+
+
+
diff --git a/docs/core/core/com.ntt.skyway.core/-sky-way-context/index.html b/docs/core/core/com.ntt.skyway.core/-sky-way-context/index.html index 7c127e9..371197a 100644 --- a/docs/core/core/com.ntt.skyway.core/-sky-way-context/index.html +++ b/docs/core/core/com.ntt.skyway.core/-sky-way-context/index.html @@ -32,7 +32,22 @@

SkyWay

Types

-
+
+
+
+
+ + +
Link copied to clipboard
+
+
+
+
data class Analytics(domain: String?, secure: Boolean?)
+
+
+
+
+
@@ -72,7 +87,7 @@

Types

-
data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)

SkyWayの利用に関する設定。

+
data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, analytics: SkyWayContext.Analytics?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)

SkyWayの利用に関する設定。

diff --git a/docs/core/core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html b/docs/core/core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html index 852f54b..b87643d 100644 --- a/docs/core/core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html +++ b/docs/core/core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html @@ -134,7 +134,7 @@

Properties

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

@@ -149,7 +149,7 @@

Properties

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

diff --git a/docs/core/core/com.ntt.skyway.plugin.unknown/-unknown/index.html b/docs/core/core/com.ntt.skyway.plugin.unknown/-unknown/index.html index 08f8147..e34c3c2 100644 --- a/docs/core/core/com.ntt.skyway.plugin.unknown/-unknown/index.html +++ b/docs/core/core/com.ntt.skyway.plugin.unknown/-unknown/index.html @@ -104,7 +104,7 @@

Properties

-
open override val metadata: String

このMemberのMetadata。

+
open override val metadata: String?

このMemberのMetadata。

@@ -119,7 +119,7 @@

Properties

-
open override val name: String

このMemberの名前。

+
open override val name: String?

このMemberの名前。

diff --git a/docs/core/core/package-list b/docs/core/core/package-list index 267e120..914bcd9 100644 --- a/docs/core/core/package-list +++ b/docs/core/core/package-list @@ -48,13 +48,13 @@ $dokka.location:com.ntt.skyway.core.channel.member/LocalPersonImpl/unsubscribe/# $dokka.location:com.ntt.skyway.core.channel.member/LocalPersonImpl/unsubscribe/#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-local-person-impl/unsubscribe.html $dokka.location:com.ntt.skyway.core.channel.member/LocalPersonImpl/updateMetadata/#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-local-person-impl/update-metadata.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Dto///PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/index.html -$dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/Dto/#com.ntt.skyway.core.channel.Channel#kotlin.String#kotlin.String#kotlin.Long/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html +$dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/Dto/#com.ntt.skyway.core.channel.Channel#kotlin.String#kotlin.String?#kotlin.Long/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/channel/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/channel.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/id/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/id.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/name/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/name.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Dto/nativePointer/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-dto/native-pointer.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Init///PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/index.html -$dokka.location:com.ntt.skyway.core.channel.member/Member.Init/Init/#kotlin.String#kotlin.String?#kotlin.Int#com.ntt.skyway.core.channel.member.Member.Type#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html +$dokka.location:com.ntt.skyway.core.channel.member/Member.Init/Init/#kotlin.String?#kotlin.String?#kotlin.Int#com.ntt.skyway.core.channel.member.Member.Type#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/-init.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Init/keepAliveIntervalSec/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/keep-alive-interval-sec.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Init/metadata/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html $dokka.location:com.ntt.skyway.core.channel.member/Member.Init/name/#/PointingToDeclaration/core/com.ntt.skyway.core.channel.member/-member/-init/name.html @@ -483,6 +483,10 @@ $dokka.location:com.ntt.skyway.core.network/WebSocketClient///PointingToDeclarat $dokka.location:com.ntt.skyway.core.network/WebSocketClient/WebSocketClient/#/PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-client/-web-socket-client.html $dokka.location:com.ntt.skyway.core.network/WebSocketClientFactory///PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-client-factory/index.html $dokka.location:com.ntt.skyway.core.network/WebSocketClientFactory/create/#/PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-client-factory/create.html +$dokka.location:com.ntt.skyway.core.network/WebSocketHeader///PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-header/index.html +$dokka.location:com.ntt.skyway.core.network/WebSocketHeader/WebSocketHeader/#kotlin.String#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-header/-web-socket-header.html +$dokka.location:com.ntt.skyway.core.network/WebSocketHeader/key/#/PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-header/key.html +$dokka.location:com.ntt.skyway.core.network/WebSocketHeader/value/#/PointingToDeclaration/core/com.ntt.skyway.core.network/-web-socket-header/value.html $dokka.location:com.ntt.skyway.core.util////PointingToDeclaration/core/com.ntt.skyway.core.util/index.html $dokka.location:com.ntt.skyway.core.util/Logger.LogLevel.DEBUG///PointingToDeclaration/core/com.ntt.skyway.core.util/-logger/-log-level/-d-e-b-u-g/index.html $dokka.location:com.ntt.skyway.core.util/Logger.LogLevel.ERROR///PointingToDeclaration/core/com.ntt.skyway.core.util/-logger/-log-level/-e-r-r-o-r/index.html @@ -504,6 +508,10 @@ $dokka.location:com.ntt.skyway.core.util/Logger/logW/#kotlin.String/PointingToDe $dokka.location:com.ntt.skyway.core.util/Logger/onLogHandler/#/PointingToDeclaration/core/com.ntt.skyway.core.util/-logger/on-log-handler.html $dokka.location:com.ntt.skyway.core.util/Logger/webRTCLog/#/PointingToDeclaration/core/com.ntt.skyway.core.util/-logger/web-r-t-c-log.html $dokka.location:com.ntt.skyway.core////PointingToDeclaration/core/com.ntt.skyway.core/index.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Analytics///PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-analytics/index.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Analytics/Analytics/#kotlin.String?#kotlin.Boolean?/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-analytics/-analytics.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Analytics/domain/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-analytics/domain.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Analytics/secure/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-analytics/secure.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Error///PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-error/index.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Error/Error/#kotlin.String/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-error/-error.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Error/message/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-error/message.html @@ -513,7 +521,8 @@ $dokka.location:com.ntt.skyway.core/SkyWayContext.IceParams/domain/#/PointingToD $dokka.location:com.ntt.skyway.core/SkyWayContext.IceParams/secure/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-ice-params/secure.html $dokka.location:com.ntt.skyway.core/SkyWayContext.IceParams/version/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-ice-params/version.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Options///PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/index.html -$dokka.location:com.ntt.skyway.core/SkyWayContext.Options/Options/#kotlin.String#com.ntt.skyway.core.util.Logger.LogLevel#kotlin.Boolean#kotlin.Boolean#com.ntt.skyway.core.SkyWayContext.RtcApi?#com.ntt.skyway.core.SkyWayContext.IceParams?#com.ntt.skyway.core.SkyWayContext.Signaling?#com.ntt.skyway.core.SkyWayContext.RtcConfig?#com.ntt.skyway.core.SkyWayContext.Sfu?#com.ntt.skyway.core.SkyWayContext.Token?/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Options/Options/#kotlin.String#com.ntt.skyway.core.util.Logger.LogLevel#kotlin.Boolean#kotlin.Boolean#com.ntt.skyway.core.SkyWayContext.RtcApi?#com.ntt.skyway.core.SkyWayContext.IceParams?#com.ntt.skyway.core.SkyWayContext.Signaling?#com.ntt.skyway.core.SkyWayContext.Analytics?#com.ntt.skyway.core.SkyWayContext.RtcConfig?#com.ntt.skyway.core.SkyWayContext.Sfu?#com.ntt.skyway.core.SkyWayContext.Token?/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/-options.html +$dokka.location:com.ntt.skyway.core/SkyWayContext.Options/analytics/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/analytics.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Options/authToken/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/auth-token.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Options/enableHardwareCodec/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/enable-hardware-codec.html $dokka.location:com.ntt.skyway.core/SkyWayContext.Options/iceParams/#/PointingToDeclaration/core/com.ntt.skyway.core/-sky-way-context/-options/ice-params.html diff --git a/docs/core/navigation.html b/docs/core/navigation.html index 5a590a1..782f46b 100644 --- a/docs/core/navigation.html +++ b/docs/core/navigation.html @@ -149,6 +149,9 @@ +
diff --git a/docs/core/scripts/pages.json b/docs/core/scripts/pages.json index c5e5f51..411f416 100644 --- a/docs/core/scripts/pages.json +++ b/docs/core/scripts/pages.json @@ -1 +1 @@ -[{"name":"AUDIO()","description":"com.ntt.skyway.core.content.Stream.ContentType.AUDIO","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-a-u-d-i-o/index.html","searchKeys":["AUDIO","AUDIO()","com.ntt.skyway.core.content.Stream.ContentType.AUDIO"]},{"name":"AV1(\"video/AV1\")","description":"com.ntt.skyway.core.content.Codec.MimeType.AV1","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-a-v1/index.html","searchKeys":["AV1","AV1(\"video/AV1\")","com.ntt.skyway.core.content.Codec.MimeType.AV1"]},{"name":"BOT()","description":"com.ntt.skyway.core.channel.member.Member.Type.BOT","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-b-o-t/index.html","searchKeys":["BOT","BOT()","com.ntt.skyway.core.channel.member.Member.Type.BOT"]},{"name":"CANCELED()","description":"com.ntt.skyway.core.channel.Publication.State.CANCELED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-c-a-n-c-e-l-e-d/index.html","searchKeys":["CANCELED","CANCELED()","com.ntt.skyway.core.channel.Publication.State.CANCELED"]},{"name":"CANCELED()","description":"com.ntt.skyway.core.channel.Subscription.State.CANCELED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-c-a-n-c-e-l-e-d/index.html","searchKeys":["CANCELED","CANCELED()","com.ntt.skyway.core.channel.Subscription.State.CANCELED"]},{"name":"CLOSED(\"CLOSED\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CLOSED","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-c-l-o-s-e-d/index.html","searchKeys":["CLOSED","CLOSED(\"CLOSED\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CLOSED"]},{"name":"CLOSED()","description":"com.ntt.skyway.core.channel.Channel.State.CLOSED","location":"core/com.ntt.skyway.core.channel/-channel/-state/-c-l-o-s-e-d/index.html","searchKeys":["CLOSED","CLOSED()","com.ntt.skyway.core.channel.Channel.State.CLOSED"]},{"name":"CONNECTING(\"CONNECTING\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CONNECTING","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-c-o-n-n-e-c-t-i-n-g/index.html","searchKeys":["CONNECTING","CONNECTING(\"CONNECTING\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CONNECTING"]},{"name":"DATA()","description":"com.ntt.skyway.core.content.Stream.ContentType.DATA","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-d-a-t-a/index.html","searchKeys":["DATA","DATA()","com.ntt.skyway.core.content.Stream.ContentType.DATA"]},{"name":"DEBUG()","description":"com.ntt.skyway.core.util.Logger.LogLevel.DEBUG","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG()","com.ntt.skyway.core.util.Logger.LogLevel.DEBUG"]},{"name":"DISABLE()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.DISABLE","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-d-i-s-a-b-l-e/index.html","searchKeys":["DISABLE","DISABLE()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.DISABLE"]},{"name":"DISABLED()","description":"com.ntt.skyway.core.channel.Publication.State.DISABLED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED()","com.ntt.skyway.core.channel.Publication.State.DISABLED"]},{"name":"DISABLED()","description":"com.ntt.skyway.core.channel.Subscription.State.DISABLED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED()","com.ntt.skyway.core.channel.Subscription.State.DISABLED"]},{"name":"ENABLE()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.ENABLE","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-e-n-a-b-l-e/index.html","searchKeys":["ENABLE","ENABLE()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.ENABLE"]},{"name":"ENABLED()","description":"com.ntt.skyway.core.channel.Publication.State.ENABLED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-e-n-a-b-l-e-d/index.html","searchKeys":["ENABLED","ENABLED()","com.ntt.skyway.core.channel.Publication.State.ENABLED"]},{"name":"ENABLED()","description":"com.ntt.skyway.core.channel.Subscription.State.ENABLED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-e-n-a-b-l-e-d/index.html","searchKeys":["ENABLED","ENABLED()","com.ntt.skyway.core.channel.Subscription.State.ENABLED"]},{"name":"ERROR()","description":"com.ntt.skyway.core.util.Logger.LogLevel.ERROR","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR()","com.ntt.skyway.core.util.Logger.LogLevel.ERROR"]},{"name":"ESTABLISHING(\"ESTABLISHING\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.ESTABLISHING","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-e-s-t-a-b-l-i-s-h-i-n-g/index.html","searchKeys":["ESTABLISHING","ESTABLISHING(\"ESTABLISHING\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.ESTABLISHING"]},{"name":"FILL_PARENT(-1)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.FILL_PARENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-f-i-l-l_-p-a-r-e-n-t/index.html","searchKeys":["FILL_PARENT","FILL_PARENT(-1)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.FILL_PARENT"]},{"name":"H264(\"video/h264\")","description":"com.ntt.skyway.core.content.Codec.MimeType.H264","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-h264/index.html","searchKeys":["H264","H264(\"video/h264\")","com.ntt.skyway.core.content.Codec.MimeType.H264"]},{"name":"INFO()","description":"com.ntt.skyway.core.util.Logger.LogLevel.INFO","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO()","com.ntt.skyway.core.util.Logger.LogLevel.INFO"]},{"name":"JOINED()","description":"com.ntt.skyway.core.channel.member.Member.State.JOINED","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-j-o-i-n-e-d/index.html","searchKeys":["JOINED","JOINED()","com.ntt.skyway.core.channel.member.Member.State.JOINED"]},{"name":"LEFT()","description":"com.ntt.skyway.core.channel.member.Member.State.LEFT","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-l-e-f-t/index.html","searchKeys":["LEFT","LEFT()","com.ntt.skyway.core.channel.member.Member.State.LEFT"]},{"name":"LOCAL()","description":"com.ntt.skyway.core.channel.member.Member.Side.LOCAL","location":"core/com.ntt.skyway.core.channel.member/-member/-side/-l-o-c-a-l/index.html","searchKeys":["LOCAL","LOCAL()","com.ntt.skyway.core.channel.member.Member.Side.LOCAL"]},{"name":"LOCAL()","description":"com.ntt.skyway.core.content.Stream.Side.LOCAL","location":"core/com.ntt.skyway.core.content/-stream/-side/-l-o-c-a-l/index.html","searchKeys":["LOCAL","LOCAL()","com.ntt.skyway.core.content.Stream.Side.LOCAL"]},{"name":"MATCH_PARENT(-1)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.MATCH_PARENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-m-a-t-c-h_-p-a-r-e-n-t/index.html","searchKeys":["MATCH_PARENT","MATCH_PARENT(-1)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.MATCH_PARENT"]},{"name":"NONE()","description":"com.ntt.skyway.core.util.Logger.LogLevel.NONE","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-n-o-n-e/index.html","searchKeys":["NONE","NONE()","com.ntt.skyway.core.util.Logger.LogLevel.NONE"]},{"name":"OPEN(\"OPEN\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.OPEN","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-o-p-e-n/index.html","searchKeys":["OPEN","OPEN(\"OPEN\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.OPEN"]},{"name":"OPENED()","description":"com.ntt.skyway.core.channel.Channel.State.OPENED","location":"core/com.ntt.skyway.core.channel/-channel/-state/-o-p-e-n-e-d/index.html","searchKeys":["OPENED","OPENED()","com.ntt.skyway.core.channel.Channel.State.OPENED"]},{"name":"OPUS(\"audio/opus\")","description":"com.ntt.skyway.core.content.Codec.MimeType.OPUS","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-o-p-u-s/index.html","searchKeys":["OPUS","OPUS(\"audio/opus\")","com.ntt.skyway.core.content.Codec.MimeType.OPUS"]},{"name":"PERSON()","description":"com.ntt.skyway.core.channel.member.Member.Type.PERSON","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-p-e-r-s-o-n/index.html","searchKeys":["PERSON","PERSON()","com.ntt.skyway.core.channel.member.Member.Type.PERSON"]},{"name":"RED(\"audio/red\")","description":"com.ntt.skyway.core.content.Codec.MimeType.RED","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-r-e-d/index.html","searchKeys":["RED","RED(\"audio/red\")","com.ntt.skyway.core.content.Codec.MimeType.RED"]},{"name":"REMOTE()","description":"com.ntt.skyway.core.channel.member.Member.Side.REMOTE","location":"core/com.ntt.skyway.core.channel.member/-member/-side/-r-e-m-o-t-e/index.html","searchKeys":["REMOTE","REMOTE()","com.ntt.skyway.core.channel.member.Member.Side.REMOTE"]},{"name":"REMOTE()","description":"com.ntt.skyway.core.content.Stream.Side.REMOTE","location":"core/com.ntt.skyway.core.content/-stream/-side/-r-e-m-o-t-e/index.html","searchKeys":["REMOTE","REMOTE()","com.ntt.skyway.core.content.Stream.Side.REMOTE"]},{"name":"SCALE_ASPECT_BALANCED()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_BALANCED","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-b-a-l-a-n-c-e-d/index.html","searchKeys":["SCALE_ASPECT_BALANCED","SCALE_ASPECT_BALANCED()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_BALANCED"]},{"name":"SCALE_ASPECT_FILL()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FILL","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-f-i-l-l/index.html","searchKeys":["SCALE_ASPECT_FILL","SCALE_ASPECT_FILL()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FILL"]},{"name":"SCALE_ASPECT_FIT()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FIT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-f-i-t/index.html","searchKeys":["SCALE_ASPECT_FIT","SCALE_ASPECT_FIT()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FIT"]},{"name":"TURN_ONLY()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.TURN_ONLY","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-t-u-r-n_-o-n-l-y/index.html","searchKeys":["TURN_ONLY","TURN_ONLY()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.TURN_ONLY"]},{"name":"UNKNOWN()","description":"com.ntt.skyway.core.channel.member.Member.Type.UNKNOWN","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-u-n-k-n-o-w-n/index.html","searchKeys":["UNKNOWN","UNKNOWN()","com.ntt.skyway.core.channel.member.Member.Type.UNKNOWN"]},{"name":"VERBOSE()","description":"com.ntt.skyway.core.util.Logger.LogLevel.VERBOSE","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE()","com.ntt.skyway.core.util.Logger.LogLevel.VERBOSE"]},{"name":"VIDEO()","description":"com.ntt.skyway.core.content.Stream.ContentType.VIDEO","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-v-i-d-e-o/index.html","searchKeys":["VIDEO","VIDEO()","com.ntt.skyway.core.content.Stream.ContentType.VIDEO"]},{"name":"VP8(\"video/VP8\")","description":"com.ntt.skyway.core.content.Codec.MimeType.VP8","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-v-p8/index.html","searchKeys":["VP8","VP8(\"video/VP8\")","com.ntt.skyway.core.content.Codec.MimeType.VP8"]},{"name":"VP9(\"video/VP9\")","description":"com.ntt.skyway.core.content.Codec.MimeType.VP9","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-v-p9/index.html","searchKeys":["VP9","VP9(\"video/VP9\")","com.ntt.skyway.core.content.Codec.MimeType.VP9"]},{"name":"WARN()","description":"com.ntt.skyway.core.util.Logger.LogLevel.WARN","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-w-a-r-n/index.html","searchKeys":["WARN","WARN()","com.ntt.skyway.core.util.Logger.LogLevel.WARN"]},{"name":"WRAP_CONTENT(-2)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.WRAP_CONTENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-w-r-a-p_-c-o-n-t-e-n-t/index.html","searchKeys":["WRAP_CONTENT","WRAP_CONTENT(-2)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.WRAP_CONTENT"]},{"name":"abstract class LocalPerson : Member","description":"com.ntt.skyway.core.channel.member.LocalPerson","location":"core/com.ntt.skyway.core.channel.member/-local-person/index.html","searchKeys":["LocalPerson","abstract class LocalPerson : Member","com.ntt.skyway.core.channel.member.LocalPerson"]},{"name":"abstract class LocalStream : Stream","description":"com.ntt.skyway.core.content.local.LocalStream","location":"core/com.ntt.skyway.core.content.local/-local-stream/index.html","searchKeys":["LocalStream","abstract class LocalStream : Stream","com.ntt.skyway.core.content.local.LocalStream"]},{"name":"abstract class RemoteMember : Member","description":"com.ntt.skyway.core.channel.member.RemoteMember","location":"core/com.ntt.skyway.core.channel.member/-remote-member/index.html","searchKeys":["RemoteMember","abstract class RemoteMember : Member","com.ntt.skyway.core.channel.member.RemoteMember"]},{"name":"abstract class RemoteMemberImpl : RemoteMember","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html","searchKeys":["RemoteMemberImpl","abstract class RemoteMemberImpl : RemoteMember","com.ntt.skyway.core.channel.member.RemoteMemberImpl"]},{"name":"abstract class RemoteStream : Stream","description":"com.ntt.skyway.core.content.remote.RemoteStream","location":"core/com.ntt.skyway.core.content.remote/-remote-stream/index.html","searchKeys":["RemoteStream","abstract class RemoteStream : Stream","com.ntt.skyway.core.content.remote.RemoteStream"]},{"name":"abstract class Stream(id: String, nativePointer: Long)","description":"com.ntt.skyway.core.content.Stream","location":"core/com.ntt.skyway.core.content/-stream/index.html","searchKeys":["Stream","abstract class Stream(id: String, nativePointer: Long)","com.ntt.skyway.core.content.Stream"]},{"name":"abstract class VideoSource","description":"com.ntt.skyway.core.content.local.source.VideoSource","location":"core/com.ntt.skyway.core.content.local.source/-video-source/index.html","searchKeys":["VideoSource","abstract class VideoSource","com.ntt.skyway.core.content.local.source.VideoSource"]},{"name":"abstract fun changePreferredEncoding(id: String)","description":"com.ntt.skyway.core.channel.Subscription.changePreferredEncoding","location":"core/com.ntt.skyway.core.channel/-subscription/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","abstract fun changePreferredEncoding(id: String)","com.ntt.skyway.core.channel.Subscription.changePreferredEncoding"]},{"name":"abstract fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.Plugin.createRemoteMember","location":"core/com.ntt.skyway.plugin/-plugin/create-remote-member.html","searchKeys":["createRemoteMember","abstract fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.Plugin.createRemoteMember"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.channel.Channel.dispose","location":"core/com.ntt.skyway.core.channel/-channel/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.channel.Channel.dispose"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.content.Stream.dispose","location":"core/com.ntt.skyway.core.content/-stream/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.content.Stream.dispose"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.content.sink.Renderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-renderer/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.content.sink.Renderer.dispose"]},{"name":"abstract fun getStats(): WebRTCStats?","description":"com.ntt.skyway.core.channel.Subscription.getStats","location":"core/com.ntt.skyway.core.channel/-subscription/get-stats.html","searchKeys":["getStats","abstract fun getStats(): WebRTCStats?","com.ntt.skyway.core.channel.Subscription.getStats"]},{"name":"abstract fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.core.channel.Publication.getStats","location":"core/com.ntt.skyway.core.channel/-publication/get-stats.html","searchKeys":["getStats","abstract fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.core.channel.Publication.getStats"]},{"name":"abstract fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.core.channel.Publication.replaceStream","location":"core/com.ntt.skyway.core.channel/-publication/replace-stream.html","searchKeys":["replaceStream","abstract fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.core.channel.Publication.replaceStream"]},{"name":"abstract fun updateEncodings(encodings: List)","description":"com.ntt.skyway.core.channel.Publication.updateEncodings","location":"core/com.ntt.skyway.core.channel/-publication/update-encodings.html","searchKeys":["updateEncodings","abstract fun updateEncodings(encodings: List)","com.ntt.skyway.core.channel.Publication.updateEncodings"]},{"name":"abstract suspend fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.Publication.cancel","location":"core/com.ntt.skyway.core.channel/-publication/cancel.html","searchKeys":["cancel","abstract suspend fun cancel(): Boolean","com.ntt.skyway.core.channel.Publication.cancel"]},{"name":"abstract suspend fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.Subscription.cancel","location":"core/com.ntt.skyway.core.channel/-subscription/cancel.html","searchKeys":["cancel","abstract suspend fun cancel(): Boolean","com.ntt.skyway.core.channel.Subscription.cancel"]},{"name":"abstract suspend fun close(): Boolean","description":"com.ntt.skyway.core.channel.Channel.close","location":"core/com.ntt.skyway.core.channel/-channel/close.html","searchKeys":["close","abstract suspend fun close(): Boolean","com.ntt.skyway.core.channel.Channel.close"]},{"name":"abstract suspend fun disable(): Boolean","description":"com.ntt.skyway.core.channel.Publication.disable","location":"core/com.ntt.skyway.core.channel/-publication/disable.html","searchKeys":["disable","abstract suspend fun disable(): Boolean","com.ntt.skyway.core.channel.Publication.disable"]},{"name":"abstract suspend fun enable(): Boolean","description":"com.ntt.skyway.core.channel.Publication.enable","location":"core/com.ntt.skyway.core.channel/-publication/enable.html","searchKeys":["enable","abstract suspend fun enable(): Boolean","com.ntt.skyway.core.channel.Publication.enable"]},{"name":"abstract suspend fun join(memberInit: Member.Init): LocalPerson?","description":"com.ntt.skyway.core.channel.Channel.join","location":"core/com.ntt.skyway.core.channel/-channel/join.html","searchKeys":["join","abstract suspend fun join(memberInit: Member.Init): LocalPerson?","com.ntt.skyway.core.channel.Channel.join"]},{"name":"abstract suspend fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.Member.leave","location":"core/com.ntt.skyway.core.channel.member/-member/leave.html","searchKeys":["leave","abstract suspend fun leave(): Boolean","com.ntt.skyway.core.channel.member.Member.leave"]},{"name":"abstract suspend fun leave(member: Member): Boolean","description":"com.ntt.skyway.core.channel.Channel.leave","location":"core/com.ntt.skyway.core.channel/-channel/leave.html","searchKeys":["leave","abstract suspend fun leave(member: Member): Boolean","com.ntt.skyway.core.channel.Channel.leave"]},{"name":"abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?","description":"com.ntt.skyway.core.channel.member.LocalPerson.publish","location":"core/com.ntt.skyway.core.channel.member/-local-person/publish.html","searchKeys":["publish","abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?","com.ntt.skyway.core.channel.member.LocalPerson.publish"]},{"name":"abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPerson.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html","searchKeys":["subscribe","abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?","com.ntt.skyway.core.channel.member.LocalPerson.subscribe"]},{"name":"abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPerson.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html","searchKeys":["subscribe","abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?","com.ntt.skyway.core.channel.member.LocalPerson.subscribe"]},{"name":"abstract suspend fun unpublish(publication: Publication): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person/unpublish.html","searchKeys":["unpublish","abstract suspend fun unpublish(publication: Publication): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unpublish"]},{"name":"abstract suspend fun unpublish(publicationId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person/unpublish.html","searchKeys":["unpublish","abstract suspend fun unpublish(publicationId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unpublish"]},{"name":"abstract suspend fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/unsubscribe.html","searchKeys":["unsubscribe","abstract suspend fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe"]},{"name":"abstract suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/unsubscribe.html","searchKeys":["unsubscribe","abstract suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.Channel.updateMetadata","location":"core/com.ntt.skyway.core.channel/-channel/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.Channel.updateMetadata"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.Publication.updateMetadata","location":"core/com.ntt.skyway.core.channel/-publication/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.Publication.updateMetadata"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.Member.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-member/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.Member.updateMetadata"]},{"name":"abstract val bots: Set","description":"com.ntt.skyway.core.channel.Channel.bots","location":"core/com.ntt.skyway.core.channel/-channel/bots.html","searchKeys":["bots","abstract val bots: Set","com.ntt.skyway.core.channel.Channel.bots"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.Publication.channel","location":"core/com.ntt.skyway.core.channel/-publication/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.Publication.channel"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.Subscription.channel","location":"core/com.ntt.skyway.core.channel/-subscription/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.Subscription.channel"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.member.Member.channel","location":"core/com.ntt.skyway.core.channel.member/-member/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.member.Member.channel"]},{"name":"abstract val codecCapabilities: List","description":"com.ntt.skyway.core.channel.Publication.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication/codec-capabilities.html","searchKeys":["codecCapabilities","abstract val codecCapabilities: List","com.ntt.skyway.core.channel.Publication.codecCapabilities"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.Publication.contentType","location":"core/com.ntt.skyway.core.channel/-publication/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.channel.Publication.contentType"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.Subscription.contentType","location":"core/com.ntt.skyway.core.channel/-subscription/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.channel.Subscription.contentType"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.Stream.contentType","location":"core/com.ntt.skyway.core.content/-stream/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.content.Stream.contentType"]},{"name":"abstract val encodings: List","description":"com.ntt.skyway.core.channel.Publication.encodings","location":"core/com.ntt.skyway.core.channel/-publication/encodings.html","searchKeys":["encodings","abstract val encodings: List","com.ntt.skyway.core.channel.Publication.encodings"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Channel.id","location":"core/com.ntt.skyway.core.channel/-channel/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Channel.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Publication.id","location":"core/com.ntt.skyway.core.channel/-publication/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Publication.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Subscription.id","location":"core/com.ntt.skyway.core.channel/-subscription/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Subscription.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.member.Member.id","location":"core/com.ntt.skyway.core.channel.member/-member/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.member.Member.id"]},{"name":"abstract val localPerson: LocalPerson?","description":"com.ntt.skyway.core.channel.Channel.localPerson","location":"core/com.ntt.skyway.core.channel/-channel/local-person.html","searchKeys":["localPerson","abstract val localPerson: LocalPerson?","com.ntt.skyway.core.channel.Channel.localPerson"]},{"name":"abstract val members: Set","description":"com.ntt.skyway.core.channel.Channel.members","location":"core/com.ntt.skyway.core.channel/-channel/members.html","searchKeys":["members","abstract val members: Set","com.ntt.skyway.core.channel.Channel.members"]},{"name":"abstract val metadata: String","description":"com.ntt.skyway.core.channel.Channel.metadata","location":"core/com.ntt.skyway.core.channel/-channel/metadata.html","searchKeys":["metadata","abstract val metadata: String","com.ntt.skyway.core.channel.Channel.metadata"]},{"name":"abstract val metadata: String","description":"com.ntt.skyway.core.channel.Publication.metadata","location":"core/com.ntt.skyway.core.channel/-publication/metadata.html","searchKeys":["metadata","abstract val metadata: String","com.ntt.skyway.core.channel.Publication.metadata"]},{"name":"abstract val metadata: String","description":"com.ntt.skyway.core.channel.member.Member.metadata","location":"core/com.ntt.skyway.core.channel.member/-member/metadata.html","searchKeys":["metadata","abstract val metadata: String","com.ntt.skyway.core.channel.member.Member.metadata"]},{"name":"abstract val name: String","description":"com.ntt.skyway.core.channel.Channel.name","location":"core/com.ntt.skyway.core.channel/-channel/name.html","searchKeys":["name","abstract val name: String","com.ntt.skyway.core.channel.Channel.name"]},{"name":"abstract val name: String","description":"com.ntt.skyway.core.channel.member.Member.name","location":"core/com.ntt.skyway.core.channel.member/-member/name.html","searchKeys":["name","abstract val name: String","com.ntt.skyway.core.channel.member.Member.name"]},{"name":"abstract val name: String","description":"com.ntt.skyway.plugin.Plugin.name","location":"core/com.ntt.skyway.plugin/-plugin/name.html","searchKeys":["name","abstract val name: String","com.ntt.skyway.plugin.Plugin.name"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.Publication.nativePointer","location":"core/com.ntt.skyway.core.channel/-publication/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.Publication.nativePointer"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.Subscription.nativePointer","location":"core/com.ntt.skyway.core.channel/-subscription/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.Subscription.nativePointer"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.Member.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-member/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.member.Member.nativePointer"]},{"name":"abstract val origin: Publication?","description":"com.ntt.skyway.core.channel.Publication.origin","location":"core/com.ntt.skyway.core.channel/-publication/origin.html","searchKeys":["origin","abstract val origin: Publication?","com.ntt.skyway.core.channel.Publication.origin"]},{"name":"abstract val preferredEncodingId: String","description":"com.ntt.skyway.core.channel.Subscription.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription/preferred-encoding-id.html","searchKeys":["preferredEncodingId","abstract val preferredEncodingId: String","com.ntt.skyway.core.channel.Subscription.preferredEncodingId"]},{"name":"abstract val publication: Publication","description":"com.ntt.skyway.core.channel.Subscription.publication","location":"core/com.ntt.skyway.core.channel/-subscription/publication.html","searchKeys":["publication","abstract val publication: Publication","com.ntt.skyway.core.channel.Subscription.publication"]},{"name":"abstract val publications: List","description":"com.ntt.skyway.core.channel.member.Member.publications","location":"core/com.ntt.skyway.core.channel.member/-member/publications.html","searchKeys":["publications","abstract val publications: List","com.ntt.skyway.core.channel.member.Member.publications"]},{"name":"abstract val publications: Set","description":"com.ntt.skyway.core.channel.Channel.publications","location":"core/com.ntt.skyway.core.channel/-channel/publications.html","searchKeys":["publications","abstract val publications: Set","com.ntt.skyway.core.channel.Channel.publications"]},{"name":"abstract val publisher: Member","description":"com.ntt.skyway.core.channel.Publication.publisher","location":"core/com.ntt.skyway.core.channel/-publication/publisher.html","searchKeys":["publisher","abstract val publisher: Member","com.ntt.skyway.core.channel.Publication.publisher"]},{"name":"abstract val side: Member.Side","description":"com.ntt.skyway.core.channel.member.Member.side","location":"core/com.ntt.skyway.core.channel.member/-member/side.html","searchKeys":["side","abstract val side: Member.Side","com.ntt.skyway.core.channel.member.Member.side"]},{"name":"abstract val side: Stream.Side","description":"com.ntt.skyway.core.content.Stream.side","location":"core/com.ntt.skyway.core.content/-stream/side.html","searchKeys":["side","abstract val side: Stream.Side","com.ntt.skyway.core.content.Stream.side"]},{"name":"abstract val sink: VideoSink","description":"com.ntt.skyway.core.content.sink.Renderer.sink","location":"core/com.ntt.skyway.core.content.sink/-renderer/sink.html","searchKeys":["sink","abstract val sink: VideoSink","com.ntt.skyway.core.content.sink.Renderer.sink"]},{"name":"abstract val state: Channel.State","description":"com.ntt.skyway.core.channel.Channel.state","location":"core/com.ntt.skyway.core.channel/-channel/state.html","searchKeys":["state","abstract val state: Channel.State","com.ntt.skyway.core.channel.Channel.state"]},{"name":"abstract val state: Member.State","description":"com.ntt.skyway.core.channel.member.Member.state","location":"core/com.ntt.skyway.core.channel.member/-member/state.html","searchKeys":["state","abstract val state: Member.State","com.ntt.skyway.core.channel.member.Member.state"]},{"name":"abstract val state: Publication.State","description":"com.ntt.skyway.core.channel.Publication.state","location":"core/com.ntt.skyway.core.channel/-publication/state.html","searchKeys":["state","abstract val state: Publication.State","com.ntt.skyway.core.channel.Publication.state"]},{"name":"abstract val state: Subscription.State","description":"com.ntt.skyway.core.channel.Subscription.state","location":"core/com.ntt.skyway.core.channel/-subscription/state.html","searchKeys":["state","abstract val state: Subscription.State","com.ntt.skyway.core.channel.Subscription.state"]},{"name":"abstract val stream: RemoteStream?","description":"com.ntt.skyway.core.channel.Subscription.stream","location":"core/com.ntt.skyway.core.channel/-subscription/stream.html","searchKeys":["stream","abstract val stream: RemoteStream?","com.ntt.skyway.core.channel.Subscription.stream"]},{"name":"abstract val stream: Stream?","description":"com.ntt.skyway.core.channel.Publication.stream","location":"core/com.ntt.skyway.core.channel/-publication/stream.html","searchKeys":["stream","abstract val stream: Stream?","com.ntt.skyway.core.channel.Publication.stream"]},{"name":"abstract val subType: String","description":"com.ntt.skyway.core.channel.member.Member.subType","location":"core/com.ntt.skyway.core.channel.member/-member/sub-type.html","searchKeys":["subType","abstract val subType: String","com.ntt.skyway.core.channel.member.Member.subType"]},{"name":"abstract val subscriber: Member","description":"com.ntt.skyway.core.channel.Subscription.subscriber","location":"core/com.ntt.skyway.core.channel/-subscription/subscriber.html","searchKeys":["subscriber","abstract val subscriber: Member","com.ntt.skyway.core.channel.Subscription.subscriber"]},{"name":"abstract val subscriptions: List","description":"com.ntt.skyway.core.channel.Publication.subscriptions","location":"core/com.ntt.skyway.core.channel/-publication/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: List","com.ntt.skyway.core.channel.Publication.subscriptions"]},{"name":"abstract val subscriptions: List","description":"com.ntt.skyway.core.channel.member.Member.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-member/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: List","com.ntt.skyway.core.channel.member.Member.subscriptions"]},{"name":"abstract val subscriptions: Set","description":"com.ntt.skyway.core.channel.Channel.subscriptions","location":"core/com.ntt.skyway.core.channel/-channel/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: Set","com.ntt.skyway.core.channel.Channel.subscriptions"]},{"name":"abstract val type: Member.Type","description":"com.ntt.skyway.core.channel.member.Member.type","location":"core/com.ntt.skyway.core.channel.member/-member/type.html","searchKeys":["type","abstract val type: Member.Type","com.ntt.skyway.core.channel.member.Member.type"]},{"name":"abstract var isSetup: Boolean","description":"com.ntt.skyway.core.content.sink.Renderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-renderer/is-setup.html","searchKeys":["isSetup","abstract var isSetup: Boolean","com.ntt.skyway.core.content.sink.Renderer.isSetup"]},{"name":"abstract var onCanceledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Subscription.onCanceledHandler","location":"core/com.ntt.skyway.core.channel/-subscription/on-canceled-handler.html","searchKeys":["onCanceledHandler","abstract var onCanceledHandler: () -> Unit?","com.ntt.skyway.core.channel.Subscription.onCanceledHandler"]},{"name":"abstract var onClosedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onClosedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-closed-handler.html","searchKeys":["onClosedHandler","abstract var onClosedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onClosedHandler"]},{"name":"abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","com.ntt.skyway.core.channel.Publication.onConnectionStateChangedHandler"]},{"name":"abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","description":"com.ntt.skyway.core.channel.Subscription.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-subscription/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","com.ntt.skyway.core.channel.Subscription.onConnectionStateChangedHandler"]},{"name":"abstract var onDisabledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onDisabledHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-disabled-handler.html","searchKeys":["onDisabledHandler","abstract var onDisabledHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onDisabledHandler"]},{"name":"abstract var onEnabledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onEnabledHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-enabled-handler.html","searchKeys":["onEnabledHandler","abstract var onEnabledHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onEnabledHandler"]},{"name":"abstract var onErrorHandler: (Exception) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onErrorHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-error-handler.html","searchKeys":["onErrorHandler","abstract var onErrorHandler: (Exception) -> Unit?","com.ntt.skyway.core.channel.Channel.onErrorHandler"]},{"name":"abstract var onLeftHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-left-handler.html","searchKeys":["onLeftHandler","abstract var onLeftHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onLeftHandler"]},{"name":"abstract var onMemberJoinedHandler: (member: Member) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberJoinedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","abstract var onMemberJoinedHandler: (member: Member) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberJoinedHandler"]},{"name":"abstract var onMemberLeftHandler: (member: Member) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberLeftHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","abstract var onMemberLeftHandler: (member: Member) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberLeftHandler"]},{"name":"abstract var onMemberListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","abstract var onMemberListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberListChangedHandler"]},{"name":"abstract var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","abstract var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.Publication.onMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.member.Member.onMetadataUpdatedHandler"]},{"name":"abstract var onPublicationDisabledHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationDisabledHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","abstract var onPublicationDisabledHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationDisabledHandler"]},{"name":"abstract var onPublicationEnabledHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationEnabledHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","abstract var onPublicationEnabledHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationEnabledHandler"]},{"name":"abstract var onPublicationListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","abstract var onPublicationListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationListChangedHandler"]},{"name":"abstract var onPublicationListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","abstract var onPublicationListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onPublicationListChangedHandler"]},{"name":"abstract var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","abstract var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationMetadataUpdatedHandler"]},{"name":"abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationSubscribedHandler"]},{"name":"abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onPublicationSubscribedHandler"]},{"name":"abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationUnsubscribedHandler"]},{"name":"abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onPublicationUnsubscribedHandler"]},{"name":"abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onStreamPublishedHandler"]},{"name":"abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onStreamPublishedHandler"]},{"name":"abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onStreamUnpublishedHandler"]},{"name":"abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onStreamUnpublishedHandler"]},{"name":"abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Publication.onSubscribedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onSubscriptionListChangedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onSubscriptionListChangedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onSubscriptionListChangedHandler"]},{"name":"abstract var onUnpublishedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","abstract var onUnpublishedHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onUnpublishedHandler"]},{"name":"abstract var onUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","abstract var onUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Publication.onUnsubscribedHandler"]},{"name":"annotation class SkyWayOptIn","description":"com.ntt.skyway.core.SkyWayOptIn","location":"core/com.ntt.skyway.core/-sky-way-opt-in/index.html","searchKeys":["SkyWayOptIn","annotation class SkyWayOptIn","com.ntt.skyway.core.SkyWayOptIn"]},{"name":"class ChannelImpl : Channel","description":"com.ntt.skyway.core.channel.ChannelImpl","location":"core/com.ntt.skyway.core.channel/-channel-impl/index.html","searchKeys":["ChannelImpl","class ChannelImpl : Channel","com.ntt.skyway.core.channel.ChannelImpl"]},{"name":"class CustomRenderer : Renderer","description":"com.ntt.skyway.core.content.sink.CustomRenderer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/index.html","searchKeys":["CustomRenderer","class CustomRenderer : Renderer","com.ntt.skyway.core.content.sink.CustomRenderer"]},{"name":"class CustomVideoFrameSource(width: Int, height: Int) : VideoSource","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/index.html","searchKeys":["CustomVideoFrameSource","class CustomVideoFrameSource(width: Int, height: Int) : VideoSource","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource"]},{"name":"class DataSource","description":"com.ntt.skyway.core.content.local.source.DataSource","location":"core/com.ntt.skyway.core.content.local.source/-data-source/index.html","searchKeys":["DataSource","class DataSource","com.ntt.skyway.core.content.local.source.DataSource"]},{"name":"class LocalAudioStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalAudioStream","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/index.html","searchKeys":["LocalAudioStream","class LocalAudioStream : LocalStream","com.ntt.skyway.core.content.local.LocalAudioStream"]},{"name":"class LocalDataStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalDataStream","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/index.html","searchKeys":["LocalDataStream","class LocalDataStream : LocalStream","com.ntt.skyway.core.content.local.LocalDataStream"]},{"name":"class LocalPersonImpl : LocalPerson","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html","searchKeys":["LocalPersonImpl","class LocalPersonImpl : LocalPerson","com.ntt.skyway.core.channel.member.LocalPersonImpl"]},{"name":"class LocalVideoStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalVideoStream","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/index.html","searchKeys":["LocalVideoStream","class LocalVideoStream : LocalStream","com.ntt.skyway.core.content.local.LocalVideoStream"]},{"name":"class PublicationImpl : Publication","description":"com.ntt.skyway.core.channel.PublicationImpl","location":"core/com.ntt.skyway.core.channel/-publication-impl/index.html","searchKeys":["PublicationImpl","class PublicationImpl : Publication","com.ntt.skyway.core.channel.PublicationImpl"]},{"name":"class RemoteAudioStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/index.html","searchKeys":["RemoteAudioStream","class RemoteAudioStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteAudioStream"]},{"name":"class RemoteDataStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteDataStream","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/index.html","searchKeys":["RemoteDataStream","class RemoteDataStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteDataStream"]},{"name":"class RemotePerson : RemoteMemberImpl","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html","searchKeys":["RemotePerson","class RemotePerson : RemoteMemberImpl","com.ntt.skyway.plugin.remotePerson.RemotePerson"]},{"name":"class RemotePersonPlugin : Plugin","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/index.html","searchKeys":["RemotePersonPlugin","class RemotePersonPlugin : Plugin","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin"]},{"name":"class RemoteVideoStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/index.html","searchKeys":["RemoteVideoStream","class RemoteVideoStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteVideoStream"]},{"name":"class Repository(channel: ChannelImpl)","description":"com.ntt.skyway.core.channel.Repository","location":"core/com.ntt.skyway.core.channel/-repository/index.html","searchKeys":["Repository","class Repository(channel: ChannelImpl)","com.ntt.skyway.core.channel.Repository"]},{"name":"class SubscriptionImpl : Subscription","description":"com.ntt.skyway.core.channel.SubscriptionImpl","location":"core/com.ntt.skyway.core.channel/-subscription-impl/index.html","searchKeys":["SubscriptionImpl","class SubscriptionImpl : Subscription","com.ntt.skyway.core.channel.SubscriptionImpl"]},{"name":"class SurfaceViewRenderer : FrameLayout, Renderer","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/index.html","searchKeys":["SurfaceViewRenderer","class SurfaceViewRenderer : FrameLayout, Renderer","com.ntt.skyway.core.content.sink.SurfaceViewRenderer"]},{"name":"class Unknown : RemoteMemberImpl","description":"com.ntt.skyway.plugin.unknown.Unknown","location":"core/com.ntt.skyway.plugin.unknown/-unknown/index.html","searchKeys":["Unknown","class Unknown : RemoteMemberImpl","com.ntt.skyway.plugin.unknown.Unknown"]},{"name":"class VideoFileSource(context: Context, fileName: String) : VideoSource","description":"com.ntt.skyway.core.content.local.source.VideoFileSource","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/index.html","searchKeys":["VideoFileSource","class VideoFileSource(context: Context, fileName: String) : VideoSource","com.ntt.skyway.core.content.local.source.VideoFileSource"]},{"name":"class WebSocketClient","description":"com.ntt.skyway.core.network.WebSocketClient","location":"core/com.ntt.skyway.core.network/-web-socket-client/index.html","searchKeys":["WebSocketClient","class WebSocketClient","com.ntt.skyway.core.network.WebSocketClient"]},{"name":"const val version: String","description":"com.ntt.skyway.core.SkyWayContext.version","location":"core/com.ntt.skyway.core/-sky-way-context/version.html","searchKeys":["version","const val version: String","com.ntt.skyway.core.SkyWayContext.version"]},{"name":"data class CapturingOptions(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/index.html","searchKeys":["CapturingOptions","data class CapturingOptions(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions"]},{"name":"data class Codec(mimeType: String, parameters: Codec.Parameters)","description":"com.ntt.skyway.core.content.Codec","location":"core/com.ntt.skyway.core.content/-codec/index.html","searchKeys":["Codec","data class Codec(mimeType: String, parameters: Codec.Parameters)","com.ntt.skyway.core.content.Codec"]},{"name":"data class Dto(channel: Channel, id: String, name: String, nativePointer: Long)","description":"com.ntt.skyway.core.channel.member.Member.Dto","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/index.html","searchKeys":["Dto","data class Dto(channel: Channel, id: String, name: String, nativePointer: Long)","com.ntt.skyway.core.channel.member.Member.Dto"]},{"name":"data class Encoding(id: String?, maxBitrate: Int?, scaleResolutionDownBy: Double?, maxFramerate: Double?)","description":"com.ntt.skyway.core.content.Encoding","location":"core/com.ntt.skyway.core.content/-encoding/index.html","searchKeys":["Encoding","data class Encoding(id: String?, maxBitrate: Int?, scaleResolutionDownBy: Double?, maxFramerate: Double?)","com.ntt.skyway.core.content.Encoding"]},{"name":"data class Error(message: String)","description":"com.ntt.skyway.core.SkyWayContext.Error","location":"core/com.ntt.skyway.core/-sky-way-context/-error/index.html","searchKeys":["Error","data class Error(message: String)","com.ntt.skyway.core.SkyWayContext.Error"]},{"name":"data class IceParams(domain: String?, version: Int?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.IceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/index.html","searchKeys":["IceParams","data class IceParams(domain: String?, version: Int?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.IceParams"]},{"name":"data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)","description":"com.ntt.skyway.core.channel.member.Member.Init","location":"core/com.ntt.skyway.core.channel.member/-member/-init/index.html","searchKeys":["Init","data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)","com.ntt.skyway.core.channel.member.Member.Init"]},{"name":"data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)","description":"com.ntt.skyway.core.SkyWayContext.Options","location":"core/com.ntt.skyway.core/-sky-way-context/-options/index.html","searchKeys":["Options","data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)","com.ntt.skyway.core.SkyWayContext.Options"]},{"name":"data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?)","description":"com.ntt.skyway.core.channel.Publication.Options","location":"core/com.ntt.skyway.core.channel/-publication/-options/index.html","searchKeys":["Options","data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?)","com.ntt.skyway.core.channel.Publication.Options"]},{"name":"data class Options(preferredEncodingId: String?)","description":"com.ntt.skyway.core.channel.Subscription.Options","location":"core/com.ntt.skyway.core.channel/-subscription/-options/index.html","searchKeys":["Options","data class Options(preferredEncodingId: String?)","com.ntt.skyway.core.channel.Subscription.Options"]},{"name":"data class Parameters(useDtx: Boolean?)","description":"com.ntt.skyway.core.content.Codec.Parameters","location":"core/com.ntt.skyway.core.content/-codec/-parameters/index.html","searchKeys":["Parameters","data class Parameters(useDtx: Boolean?)","com.ntt.skyway.core.content.Codec.Parameters"]},{"name":"data class RtcApi(domain: String?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.RtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/index.html","searchKeys":["RtcApi","data class RtcApi(domain: String?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.RtcApi"]},{"name":"data class RtcConfig(timeout: Int?, policy: SkyWayContext.TurnPolicy?)","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/index.html","searchKeys":["RtcConfig","data class RtcConfig(timeout: Int?, policy: SkyWayContext.TurnPolicy?)","com.ntt.skyway.core.SkyWayContext.RtcConfig"]},{"name":"data class Sfu(domain: String?, version: Int?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.Sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/index.html","searchKeys":["Sfu","data class Sfu(domain: String?, version: Int?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.Sfu"]},{"name":"data class Signaling(domain: String?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.Signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/index.html","searchKeys":["Signaling","data class Signaling(domain: String?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.Signaling"]},{"name":"data class Token(tokenReminderTimeSec: Int?)","description":"com.ntt.skyway.core.SkyWayContext.Token","location":"core/com.ntt.skyway.core/-sky-way-context/-token/index.html","searchKeys":["Token","data class Token(tokenReminderTimeSec: Int?)","com.ntt.skyway.core.SkyWayContext.Token"]},{"name":"data class VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/index.html","searchKeys":["VideoFrameBuffer","data class VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer"]},{"name":"data class WebRTCStats(reports: List)","description":"com.ntt.skyway.core.content.WebRTCStats","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html","searchKeys":["WebRTCStats","data class WebRTCStats(reports: List)","com.ntt.skyway.core.content.WebRTCStats"]},{"name":"data class WebRTCStatsReport(id: String, type: String, params: Map)","description":"com.ntt.skyway.core.content.WebRTCStatsReport","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html","searchKeys":["WebRTCStatsReport","data class WebRTCStatsReport(id: String, type: String, params: Map)","com.ntt.skyway.core.content.WebRTCStatsReport"]},{"name":"enum ConnectionState : Enum ","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/index.html","searchKeys":["ConnectionState","enum ConnectionState : Enum ","com.ntt.skyway.core.network.WebSocketClient.ConnectionState"]},{"name":"enum ContentType : Enum ","description":"com.ntt.skyway.core.content.Stream.ContentType","location":"core/com.ntt.skyway.core.content/-stream/-content-type/index.html","searchKeys":["ContentType","enum ContentType : Enum ","com.ntt.skyway.core.content.Stream.ContentType"]},{"name":"enum LayoutParam : Enum ","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/index.html","searchKeys":["LayoutParam","enum LayoutParam : Enum ","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam"]},{"name":"enum LogLevel : Enum ","description":"com.ntt.skyway.core.util.Logger.LogLevel","location":"core/com.ntt.skyway.core.util/-logger/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","com.ntt.skyway.core.util.Logger.LogLevel"]},{"name":"enum MimeType : Enum ","description":"com.ntt.skyway.core.content.Codec.MimeType","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/index.html","searchKeys":["MimeType","enum MimeType : Enum ","com.ntt.skyway.core.content.Codec.MimeType"]},{"name":"enum ScalingType : Enum ","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/index.html","searchKeys":["ScalingType","enum ScalingType : Enum ","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType"]},{"name":"enum Side : Enum ","description":"com.ntt.skyway.core.channel.member.Member.Side","location":"core/com.ntt.skyway.core.channel.member/-member/-side/index.html","searchKeys":["Side","enum Side : Enum ","com.ntt.skyway.core.channel.member.Member.Side"]},{"name":"enum Side : Enum ","description":"com.ntt.skyway.core.content.Stream.Side","location":"core/com.ntt.skyway.core.content/-stream/-side/index.html","searchKeys":["Side","enum Side : Enum ","com.ntt.skyway.core.content.Stream.Side"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Channel.State","location":"core/com.ntt.skyway.core.channel/-channel/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Channel.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.member.Member.State","location":"core/com.ntt.skyway.core.channel.member/-member/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.member.Member.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Publication.State","location":"core/com.ntt.skyway.core.channel/-publication/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Publication.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Subscription.State","location":"core/com.ntt.skyway.core.channel/-subscription/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Subscription.State"]},{"name":"enum TurnPolicy : Enum ","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/index.html","searchKeys":["TurnPolicy","enum TurnPolicy : Enum ","com.ntt.skyway.core.SkyWayContext.TurnPolicy"]},{"name":"enum Type : Enum ","description":"com.ntt.skyway.core.channel.member.Member.Type","location":"core/com.ntt.skyway.core.channel.member/-member/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.ntt.skyway.core.channel.member.Member.Type"]},{"name":"fun CapturingOptions(width: Int, height: Int, frameRate: Int = 30)","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.CapturingOptions","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/-capturing-options.html","searchKeys":["CapturingOptions","fun CapturingOptions(width: Int, height: Int, frameRate: Int = 30)","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.CapturingOptions"]},{"name":"fun Codec(mimeType: Codec.MimeType, parameters: Codec.Parameters = Parameters())","description":"com.ntt.skyway.core.content.Codec.Codec","location":"core/com.ntt.skyway.core.content/-codec/-codec.html","searchKeys":["Codec","fun Codec(mimeType: Codec.MimeType, parameters: Codec.Parameters = Parameters())","com.ntt.skyway.core.content.Codec.Codec"]},{"name":"fun Codec(mimeType: String, parameters: Codec.Parameters)","description":"com.ntt.skyway.core.content.Codec.Codec","location":"core/com.ntt.skyway.core.content/-codec/-codec.html","searchKeys":["Codec","fun Codec(mimeType: String, parameters: Codec.Parameters)","com.ntt.skyway.core.content.Codec.Codec"]},{"name":"fun CustomRenderer()","description":"com.ntt.skyway.core.content.sink.CustomRenderer.CustomRenderer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-custom-renderer.html","searchKeys":["CustomRenderer","fun CustomRenderer()","com.ntt.skyway.core.content.sink.CustomRenderer.CustomRenderer"]},{"name":"fun CustomVideoFrameSource(width: Int, height: Int)","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.CustomVideoFrameSource","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/-custom-video-frame-source.html","searchKeys":["CustomVideoFrameSource","fun CustomVideoFrameSource(width: Int, height: Int)","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.CustomVideoFrameSource"]},{"name":"fun DataSource()","description":"com.ntt.skyway.core.content.local.source.DataSource.DataSource","location":"core/com.ntt.skyway.core.content.local.source/-data-source/-data-source.html","searchKeys":["DataSource","fun DataSource()","com.ntt.skyway.core.content.local.source.DataSource.DataSource"]},{"name":"fun Dto(channel: Channel, id: String, name: String, nativePointer: Long)","description":"com.ntt.skyway.core.channel.member.Member.Dto.Dto","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html","searchKeys":["Dto","fun Dto(channel: Channel, id: String, name: String, nativePointer: Long)","com.ntt.skyway.core.channel.member.Member.Dto.Dto"]},{"name":"fun Encoding(id: String?, maxBitrate: Int? = null, scaleResolutionDownBy: Double? = null, maxFramerate: Double? = null)","description":"com.ntt.skyway.core.content.Encoding.Encoding","location":"core/com.ntt.skyway.core.content/-encoding/-encoding.html","searchKeys":["Encoding","fun Encoding(id: String?, maxBitrate: Int? = null, scaleResolutionDownBy: Double? = null, maxFramerate: Double? = null)","com.ntt.skyway.core.content.Encoding.Encoding"]},{"name":"fun Error(message: String)","description":"com.ntt.skyway.core.SkyWayContext.Error.Error","location":"core/com.ntt.skyway.core/-sky-way-context/-error/-error.html","searchKeys":["Error","fun Error(message: String)","com.ntt.skyway.core.SkyWayContext.Error.Error"]},{"name":"fun IceParams(domain: String? = null, version: Int? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.IceParams.IceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/-ice-params.html","searchKeys":["IceParams","fun IceParams(domain: String? = null, version: Int? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.IceParams.IceParams"]},{"name":"fun Init(name: String, metadata: String? = \"\", keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = \"\")","description":"com.ntt.skyway.core.channel.member.Member.Init.Init","location":"core/com.ntt.skyway.core.channel.member/-member/-init/-init.html","searchKeys":["Init","fun Init(name: String, metadata: String? = \"\", keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = \"\")","com.ntt.skyway.core.channel.member.Member.Init.Init"]},{"name":"fun LocalPerson()","description":"com.ntt.skyway.core.channel.member.LocalPerson.LocalPerson","location":"core/com.ntt.skyway.core.channel.member/-local-person/-local-person.html","searchKeys":["LocalPerson","fun LocalPerson()","com.ntt.skyway.core.channel.member.LocalPerson.LocalPerson"]},{"name":"fun LocalPersonImpl(dto: Member.Dto, repository: Repository)","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.LocalPersonImpl","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/-local-person-impl.html","searchKeys":["LocalPersonImpl","fun LocalPersonImpl(dto: Member.Dto, repository: Repository)","com.ntt.skyway.core.channel.member.LocalPersonImpl.LocalPersonImpl"]},{"name":"fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)","description":"com.ntt.skyway.core.SkyWayContext.Options.Options","location":"core/com.ntt.skyway.core/-sky-way-context/-options/-options.html","searchKeys":["Options","fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)","com.ntt.skyway.core.SkyWayContext.Options.Options"]},{"name":"fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null)","description":"com.ntt.skyway.core.channel.Publication.Options.Options","location":"core/com.ntt.skyway.core.channel/-publication/-options/-options.html","searchKeys":["Options","fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null)","com.ntt.skyway.core.channel.Publication.Options.Options"]},{"name":"fun Options(preferredEncodingId: String? = null)","description":"com.ntt.skyway.core.channel.Subscription.Options.Options","location":"core/com.ntt.skyway.core.channel/-subscription/-options/-options.html","searchKeys":["Options","fun Options(preferredEncodingId: String? = null)","com.ntt.skyway.core.channel.Subscription.Options.Options"]},{"name":"fun Parameters(useDtx: Boolean? = null)","description":"com.ntt.skyway.core.content.Codec.Parameters.Parameters","location":"core/com.ntt.skyway.core.content/-codec/-parameters/-parameters.html","searchKeys":["Parameters","fun Parameters(useDtx: Boolean? = null)","com.ntt.skyway.core.content.Codec.Parameters.Parameters"]},{"name":"fun RemoteMember()","description":"com.ntt.skyway.core.channel.member.RemoteMember.RemoteMember","location":"core/com.ntt.skyway.core.channel.member/-remote-member/-remote-member.html","searchKeys":["RemoteMember","fun RemoteMember()","com.ntt.skyway.core.channel.member.RemoteMember.RemoteMember"]},{"name":"fun RemoteMemberImpl(dto: Member.Dto)","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.RemoteMemberImpl","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/-remote-member-impl.html","searchKeys":["RemoteMemberImpl","fun RemoteMemberImpl(dto: Member.Dto)","com.ntt.skyway.core.channel.member.RemoteMemberImpl.RemoteMemberImpl"]},{"name":"fun RemotePersonPlugin()","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.RemotePersonPlugin","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/-remote-person-plugin.html","searchKeys":["RemotePersonPlugin","fun RemotePersonPlugin()","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.RemotePersonPlugin"]},{"name":"fun Repository(channel: ChannelImpl)","description":"com.ntt.skyway.core.channel.Repository.Repository","location":"core/com.ntt.skyway.core.channel/-repository/-repository.html","searchKeys":["Repository","fun Repository(channel: ChannelImpl)","com.ntt.skyway.core.channel.Repository.Repository"]},{"name":"fun RtcApi(domain: String? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.RtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/-rtc-api.html","searchKeys":["RtcApi","fun RtcApi(domain: String? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.RtcApi.RtcApi"]},{"name":"fun RtcConfig(timeout: Int? = null, policy: SkyWayContext.TurnPolicy? = null)","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.RtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/-rtc-config.html","searchKeys":["RtcConfig","fun RtcConfig(timeout: Int? = null, policy: SkyWayContext.TurnPolicy? = null)","com.ntt.skyway.core.SkyWayContext.RtcConfig.RtcConfig"]},{"name":"fun Sfu(domain: String? = null, version: Int? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.Sfu.Sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/-sfu.html","searchKeys":["Sfu","fun Sfu(domain: String? = null, version: Int? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.Sfu.Sfu"]},{"name":"fun Signaling(domain: String? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.Signaling.Signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/-signaling.html","searchKeys":["Signaling","fun Signaling(domain: String? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.Signaling.Signaling"]},{"name":"fun SkyWayOptIn()","description":"com.ntt.skyway.core.SkyWayOptIn.SkyWayOptIn","location":"core/com.ntt.skyway.core/-sky-way-opt-in/-sky-way-opt-in.html","searchKeys":["SkyWayOptIn","fun SkyWayOptIn()","com.ntt.skyway.core.SkyWayOptIn.SkyWayOptIn"]},{"name":"fun Stream(id: String, nativePointer: Long)","description":"com.ntt.skyway.core.content.Stream.Stream","location":"core/com.ntt.skyway.core.content/-stream/-stream.html","searchKeys":["Stream","fun Stream(id: String, nativePointer: Long)","com.ntt.skyway.core.content.Stream.Stream"]},{"name":"fun SurfaceViewRenderer(context: Context)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-surface-view-renderer.html","searchKeys":["SurfaceViewRenderer","fun SurfaceViewRenderer(context: Context)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer"]},{"name":"fun SurfaceViewRenderer(context: Context, attrs: AttributeSet)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-surface-view-renderer.html","searchKeys":["SurfaceViewRenderer","fun SurfaceViewRenderer(context: Context, attrs: AttributeSet)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer"]},{"name":"fun Token(tokenReminderTimeSec: Int? = null)","description":"com.ntt.skyway.core.SkyWayContext.Token.Token","location":"core/com.ntt.skyway.core/-sky-way-context/-token/-token.html","searchKeys":["Token","fun Token(tokenReminderTimeSec: Int? = null)","com.ntt.skyway.core.SkyWayContext.Token.Token"]},{"name":"fun VideoFileSource(context: Context, fileName: String)","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.VideoFileSource","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/-video-file-source.html","searchKeys":["VideoFileSource","fun VideoFileSource(context: Context, fileName: String)","com.ntt.skyway.core.content.local.source.VideoFileSource.VideoFileSource"]},{"name":"fun VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.VideoFrameBuffer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/-video-frame-buffer.html","searchKeys":["VideoFrameBuffer","fun VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.VideoFrameBuffer"]},{"name":"fun VideoSource()","description":"com.ntt.skyway.core.content.local.source.VideoSource.VideoSource","location":"core/com.ntt.skyway.core.content.local.source/-video-source/-video-source.html","searchKeys":["VideoSource","fun VideoSource()","com.ntt.skyway.core.content.local.source.VideoSource.VideoSource"]},{"name":"fun WebRTCStats(reports: List)","description":"com.ntt.skyway.core.content.WebRTCStats.WebRTCStats","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/-web-r-t-c-stats.html","searchKeys":["WebRTCStats","fun WebRTCStats(reports: List)","com.ntt.skyway.core.content.WebRTCStats.WebRTCStats"]},{"name":"fun WebRTCStatsReport(id: String, type: String, params: Map)","description":"com.ntt.skyway.core.content.WebRTCStatsReport.WebRTCStatsReport","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/-web-r-t-c-stats-report.html","searchKeys":["WebRTCStatsReport","fun WebRTCStatsReport(id: String, type: String, params: Map)","com.ntt.skyway.core.content.WebRTCStatsReport.WebRTCStatsReport"]},{"name":"fun WebSocketClient()","description":"com.ntt.skyway.core.network.WebSocketClient.WebSocketClient","location":"core/com.ntt.skyway.core.network/-web-socket-client/-web-socket-client.html","searchKeys":["WebSocketClient","fun WebSocketClient()","com.ntt.skyway.core.network.WebSocketClient.WebSocketClient"]},{"name":"fun _updateRtcConfig(rtcConfig: SkyWayContext.RtcConfig)","description":"com.ntt.skyway.core.SkyWayContext._updateRtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/_update-rtc-config.html","searchKeys":["_updateRtcConfig","fun _updateRtcConfig(rtcConfig: SkyWayContext.RtcConfig)","com.ntt.skyway.core.SkyWayContext._updateRtcConfig"]},{"name":"fun addRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.local.LocalVideoStream.addRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/add-renderer.html","searchKeys":["addRenderer","fun addRenderer(renderer: Renderer)","com.ntt.skyway.core.content.local.LocalVideoStream.addRenderer"]},{"name":"fun addRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.addRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/add-renderer.html","searchKeys":["addRenderer","fun addRenderer(renderer: Renderer)","com.ntt.skyway.core.content.remote.RemoteVideoStream.addRenderer"]},{"name":"fun changeCamera(deviceName: String)","description":"com.ntt.skyway.core.content.local.source.CameraSource.changeCamera","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/change-camera.html","searchKeys":["changeCamera","fun changeCamera(deviceName: String)","com.ntt.skyway.core.content.local.source.CameraSource.changeCamera"]},{"name":"fun changeCapturingSize(width: Int, height: Int)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.changeCapturingSize","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/change-capturing-size.html","searchKeys":["changeCapturingSize","fun changeCapturingSize(width: Int, height: Int)","com.ntt.skyway.core.content.local.source.ScreenSource.changeCapturingSize"]},{"name":"fun changeRecord(audioRecord: AudioRecord)","description":"com.ntt.skyway.core.content.local.source.AudioSource.changeRecord","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/change-record.html","searchKeys":["changeRecord","fun changeRecord(audioRecord: AudioRecord)","com.ntt.skyway.core.content.local.source.AudioSource.changeRecord"]},{"name":"fun changeTrack(audioTrack: AudioTrack)","description":"com.ntt.skyway.core.content.sink.AudioDestination.changeTrack","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/change-track.html","searchKeys":["changeTrack","fun changeTrack(audioTrack: AudioTrack)","com.ntt.skyway.core.content.sink.AudioDestination.changeTrack"]},{"name":"fun create(): WebSocketClient","description":"com.ntt.skyway.core.network.WebSocketClientFactory.create","location":"core/com.ntt.skyway.core.network/-web-socket-client-factory/create.html","searchKeys":["create","fun create(): WebSocketClient","com.ntt.skyway.core.network.WebSocketClientFactory.create"]},{"name":"fun createStream(): LocalAudioStream","description":"com.ntt.skyway.core.content.local.source.AudioSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalAudioStream","com.ntt.skyway.core.content.local.source.AudioSource.createStream"]},{"name":"fun createStream(): LocalDataStream","description":"com.ntt.skyway.core.content.local.source.DataSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-data-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalDataStream","com.ntt.skyway.core.content.local.source.DataSource.createStream"]},{"name":"fun createStream(): LocalVideoStream","description":"com.ntt.skyway.core.content.local.source.VideoSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-video-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalVideoStream","com.ntt.skyway.core.content.local.source.VideoSource.createStream"]},{"name":"fun dispose()","description":"com.ntt.skyway.core.SkyWayContext.dispose","location":"core/com.ntt.skyway.core/-sky-way-context/dispose.html","searchKeys":["dispose","fun dispose()","com.ntt.skyway.core.SkyWayContext.dispose"]},{"name":"fun findPlugin(name: String): Plugin?","description":"com.ntt.skyway.core.SkyWayContext.findPlugin","location":"core/com.ntt.skyway.core/-sky-way-context/find-plugin.html","searchKeys":["findPlugin","fun findPlugin(name: String): Plugin?","com.ntt.skyway.core.SkyWayContext.findPlugin"]},{"name":"fun fromJsonArray(jsonArr: JsonArray): List","description":"com.ntt.skyway.core.content.Codec.Companion.fromJsonArray","location":"core/com.ntt.skyway.core.content/-codec/-companion/from-json-array.html","searchKeys":["fromJsonArray","fun fromJsonArray(jsonArr: JsonArray): List","com.ntt.skyway.core.content.Codec.Companion.fromJsonArray"]},{"name":"fun fromJsonArray(jsonArr: JsonArray): List","description":"com.ntt.skyway.core.content.Encoding.Companion.fromJsonArray","location":"core/com.ntt.skyway.core.content/-encoding/-companion/from-json-array.html","searchKeys":["fromJsonArray","fun fromJsonArray(jsonArr: JsonArray): List","com.ntt.skyway.core.content.Encoding.Companion.fromJsonArray"]},{"name":"fun getBackCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getBackCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-back-cameras.html","searchKeys":["getBackCameras","fun getBackCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getBackCameras"]},{"name":"fun getCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-cameras.html","searchKeys":["getCameras","fun getCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getCameras"]},{"name":"fun getFrontCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getFrontCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-front-cameras.html","searchKeys":["getFrontCameras","fun getFrontCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getFrontCameras"]},{"name":"fun log(level: Int, message: String, fileName: String, methodName: String, lineNumber: Int)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Int, message: String, fileName: String, methodName: String, lineNumber: Int)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun log(level: Logger.LogLevel, message: String)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Logger.LogLevel, message: String)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun log(level: Logger.LogLevel, message: String, tag: String)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Logger.LogLevel, message: String, tag: String)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun logD(message: String)","description":"com.ntt.skyway.core.util.Logger.logD","location":"core/com.ntt.skyway.core.util/-logger/log-d.html","searchKeys":["logD","fun logD(message: String)","com.ntt.skyway.core.util.Logger.logD"]},{"name":"fun logE(message: String)","description":"com.ntt.skyway.core.util.Logger.logE","location":"core/com.ntt.skyway.core.util/-logger/log-e.html","searchKeys":["logE","fun logE(message: String)","com.ntt.skyway.core.util.Logger.logE"]},{"name":"fun logI(message: String)","description":"com.ntt.skyway.core.util.Logger.logI","location":"core/com.ntt.skyway.core.util/-logger/log-i.html","searchKeys":["logI","fun logI(message: String)","com.ntt.skyway.core.util.Logger.logI"]},{"name":"fun logV(message: String)","description":"com.ntt.skyway.core.util.Logger.logV","location":"core/com.ntt.skyway.core.util/-logger/log-v.html","searchKeys":["logV","fun logV(message: String)","com.ntt.skyway.core.util.Logger.logV"]},{"name":"fun logW(message: String)","description":"com.ntt.skyway.core.util.Logger.logW","location":"core/com.ntt.skyway.core.util/-logger/log-w.html","searchKeys":["logW","fun logW(message: String)","com.ntt.skyway.core.util.Logger.logW"]},{"name":"fun onFatalError(message: String)","description":"com.ntt.skyway.core.SkyWayContext.onFatalError","location":"core/com.ntt.skyway.core/-sky-way-context/on-fatal-error.html","searchKeys":["onFatalError","fun onFatalError(message: String)","com.ntt.skyway.core.SkyWayContext.onFatalError"]},{"name":"fun onReconnectStart()","description":"com.ntt.skyway.core.SkyWayContext.onReconnectStart","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-start.html","searchKeys":["onReconnectStart","fun onReconnectStart()","com.ntt.skyway.core.SkyWayContext.onReconnectStart"]},{"name":"fun onReconnectSuccess()","description":"com.ntt.skyway.core.SkyWayContext.onReconnectSuccess","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-success.html","searchKeys":["onReconnectSuccess","fun onReconnectSuccess()","com.ntt.skyway.core.SkyWayContext.onReconnectSuccess"]},{"name":"fun onTokenExpired()","description":"com.ntt.skyway.core.SkyWayContext.onTokenExpired","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-expired.html","searchKeys":["onTokenExpired","fun onTokenExpired()","com.ntt.skyway.core.SkyWayContext.onTokenExpired"]},{"name":"fun onTokenRefreshingNeeded()","description":"com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeeded","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-refreshing-needed.html","searchKeys":["onTokenRefreshingNeeded","fun onTokenRefreshingNeeded()","com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeeded"]},{"name":"fun registerPlugin(plugin: Plugin)","description":"com.ntt.skyway.core.SkyWayContext.registerPlugin","location":"core/com.ntt.skyway.core/-sky-way-context/register-plugin.html","searchKeys":["registerPlugin","fun registerPlugin(plugin: Plugin)","com.ntt.skyway.core.SkyWayContext.registerPlugin"]},{"name":"fun removeAllRenderer()","description":"com.ntt.skyway.core.content.local.LocalVideoStream.removeAllRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/remove-all-renderer.html","searchKeys":["removeAllRenderer","fun removeAllRenderer()","com.ntt.skyway.core.content.local.LocalVideoStream.removeAllRenderer"]},{"name":"fun removeAllRenderer()","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.removeAllRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/remove-all-renderer.html","searchKeys":["removeAllRenderer","fun removeAllRenderer()","com.ntt.skyway.core.content.remote.RemoteVideoStream.removeAllRenderer"]},{"name":"fun removeRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.local.LocalVideoStream.removeRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/remove-renderer.html","searchKeys":["removeRenderer","fun removeRenderer(renderer: Renderer)","com.ntt.skyway.core.content.local.LocalVideoStream.removeRenderer"]},{"name":"fun removeRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.removeRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/remove-renderer.html","searchKeys":["removeRenderer","fun removeRenderer(renderer: Renderer)","com.ntt.skyway.core.content.remote.RemoteVideoStream.removeRenderer"]},{"name":"fun setScalingType(scalingType: SurfaceViewRenderer.ScalingType)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setScalingType","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/set-scaling-type.html","searchKeys":["setScalingType","fun setScalingType(scalingType: SurfaceViewRenderer.ScalingType)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setScalingType"]},{"name":"fun setVolume(volume: Double)","description":"com.ntt.skyway.core.content.local.LocalAudioStream.setVolume","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/set-volume.html","searchKeys":["setVolume","fun setVolume(volume: Double)","com.ntt.skyway.core.content.local.LocalAudioStream.setVolume"]},{"name":"fun setVolume(volume: Double)","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.setVolume","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/set-volume.html","searchKeys":["setVolume","fun setVolume(volume: Double)","com.ntt.skyway.core.content.remote.RemoteAudioStream.setVolume"]},{"name":"fun setup(context: Context, mediaProjectionPermissionResultData: Intent)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.setup","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/setup.html","searchKeys":["setup","fun setup(context: Context, mediaProjectionPermissionResultData: Intent)","com.ntt.skyway.core.content.local.source.ScreenSource.setup"]},{"name":"fun setup(width: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT, height: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setup","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/setup.html","searchKeys":["setup","fun setup(width: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT, height: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setup"]},{"name":"fun start()","description":"com.ntt.skyway.core.content.local.source.AudioSource.start","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/start.html","searchKeys":["start","fun start()","com.ntt.skyway.core.content.local.source.AudioSource.start"]},{"name":"fun startCapturing(context: Context, deviceName: String, options: CameraSource.CapturingOptions)","description":"com.ntt.skyway.core.content.local.source.CameraSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(context: Context, deviceName: String, options: CameraSource.CapturingOptions)","com.ntt.skyway.core.content.local.source.CameraSource.startCapturing"]},{"name":"fun startCapturing(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.ScreenSource.startCapturing"]},{"name":"fun startCapturing(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.VideoFileSource.startCapturing"]},{"name":"fun stop()","description":"com.ntt.skyway.core.content.local.source.AudioSource.stop","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/stop.html","searchKeys":["stop","fun stop()","com.ntt.skyway.core.content.local.source.AudioSource.stop"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.CameraSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.CameraSource.stopCapturing"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.ScreenSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.ScreenSource.stopCapturing"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.VideoFileSource.stopCapturing"]},{"name":"fun updateAuthToken(authToken: String): Boolean","description":"com.ntt.skyway.core.SkyWayContext.updateAuthToken","location":"core/com.ntt.skyway.core/-sky-way-context/update-auth-token.html","searchKeys":["updateAuthToken","fun updateAuthToken(authToken: String): Boolean","com.ntt.skyway.core.SkyWayContext.updateAuthToken"]},{"name":"fun updateFrame(bitmap: Bitmap, rotation: Int)","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.updateFrame","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/update-frame.html","searchKeys":["updateFrame","fun updateFrame(bitmap: Bitmap, rotation: Int)","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.updateFrame"]},{"name":"fun write(data: ByteArray)","description":"com.ntt.skyway.core.content.local.LocalDataStream.write","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/write.html","searchKeys":["write","fun write(data: ByteArray)","com.ntt.skyway.core.content.local.LocalDataStream.write"]},{"name":"fun write(data: String)","description":"com.ntt.skyway.core.content.local.LocalDataStream.write","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/write.html","searchKeys":["write","fun write(data: String)","com.ntt.skyway.core.content.local.LocalDataStream.write"]},{"name":"interface Channel","description":"com.ntt.skyway.core.channel.Channel","location":"core/com.ntt.skyway.core.channel/-channel/index.html","searchKeys":["Channel","interface Channel","com.ntt.skyway.core.channel.Channel"]},{"name":"interface Member","description":"com.ntt.skyway.core.channel.member.Member","location":"core/com.ntt.skyway.core.channel.member/-member/index.html","searchKeys":["Member","interface Member","com.ntt.skyway.core.channel.member.Member"]},{"name":"interface Plugin","description":"com.ntt.skyway.plugin.Plugin","location":"core/com.ntt.skyway.plugin/-plugin/index.html","searchKeys":["Plugin","interface Plugin","com.ntt.skyway.plugin.Plugin"]},{"name":"interface Publication","description":"com.ntt.skyway.core.channel.Publication","location":"core/com.ntt.skyway.core.channel/-publication/index.html","searchKeys":["Publication","interface Publication","com.ntt.skyway.core.channel.Publication"]},{"name":"interface Renderer","description":"com.ntt.skyway.core.content.sink.Renderer","location":"core/com.ntt.skyway.core.content.sink/-renderer/index.html","searchKeys":["Renderer","interface Renderer","com.ntt.skyway.core.content.sink.Renderer"]},{"name":"interface Subscription","description":"com.ntt.skyway.core.channel.Subscription","location":"core/com.ntt.skyway.core.channel/-subscription/index.html","searchKeys":["Subscription","interface Subscription","com.ntt.skyway.core.channel.Subscription"]},{"name":"object AudioDestination","description":"com.ntt.skyway.core.content.sink.AudioDestination","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/index.html","searchKeys":["AudioDestination","object AudioDestination","com.ntt.skyway.core.content.sink.AudioDestination"]},{"name":"object AudioSource","description":"com.ntt.skyway.core.content.local.source.AudioSource","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/index.html","searchKeys":["AudioSource","object AudioSource","com.ntt.skyway.core.content.local.source.AudioSource"]},{"name":"object CameraSource : VideoSource","description":"com.ntt.skyway.core.content.local.source.CameraSource","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/index.html","searchKeys":["CameraSource","object CameraSource : VideoSource","com.ntt.skyway.core.content.local.source.CameraSource"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Channel.Companion","location":"core/com.ntt.skyway.core.channel/-channel/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Channel.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Channel.State.Companion","location":"core/com.ntt.skyway.core.channel/-channel/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Channel.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.ChannelImpl.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Publication.State.Companion","location":"core/com.ntt.skyway.core.channel/-publication/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Publication.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Subscription.State.Companion","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Subscription.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.member.Member.State.Companion","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.member.Member.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Codec.Companion","location":"core/com.ntt.skyway.core.content/-codec/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Codec.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Codec.MimeType.Companion","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Codec.MimeType.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Encoding.Companion","location":"core/com.ntt.skyway.core.content/-encoding/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Encoding.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Stream.ContentType.Companion","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Stream.ContentType.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.Companion","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.Companion"]},{"name":"object HttpClient","description":"com.ntt.skyway.core.network.HttpClient","location":"core/com.ntt.skyway.core.network/-http-client/index.html","searchKeys":["HttpClient","object HttpClient","com.ntt.skyway.core.network.HttpClient"]},{"name":"object Logger","description":"com.ntt.skyway.core.util.Logger","location":"core/com.ntt.skyway.core.util/-logger/index.html","searchKeys":["Logger","object Logger","com.ntt.skyway.core.util.Logger"]},{"name":"object ScreenSource : VideoSource","description":"com.ntt.skyway.core.content.local.source.ScreenSource","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/index.html","searchKeys":["ScreenSource","object ScreenSource : VideoSource","com.ntt.skyway.core.content.local.source.ScreenSource"]},{"name":"object SkyWayContext","description":"com.ntt.skyway.core.SkyWayContext","location":"core/com.ntt.skyway.core/-sky-way-context/index.html","searchKeys":["SkyWayContext","object SkyWayContext","com.ntt.skyway.core.SkyWayContext"]},{"name":"object UnknownPlugin : Plugin","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/index.html","searchKeys":["UnknownPlugin","object UnknownPlugin : Plugin","com.ntt.skyway.plugin.unknown.UnknownPlugin"]},{"name":"object WebSocketClientFactory","description":"com.ntt.skyway.core.network.WebSocketClientFactory","location":"core/com.ntt.skyway.core.network/-web-socket-client-factory/index.html","searchKeys":["WebSocketClientFactory","object WebSocketClientFactory","com.ntt.skyway.core.network.WebSocketClientFactory"]},{"name":"open lateinit override var sink: SurfaceViewRenderer","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.sink","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/sink.html","searchKeys":["sink","open lateinit override var sink: SurfaceViewRenderer","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.sink"]},{"name":"open override fun changePreferredEncoding(id: String)","description":"com.ntt.skyway.core.channel.SubscriptionImpl.changePreferredEncoding","location":"core/com.ntt.skyway.core.channel/-subscription-impl/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","open override fun changePreferredEncoding(id: String)","com.ntt.skyway.core.channel.SubscriptionImpl.changePreferredEncoding"]},{"name":"open override fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.createRemoteMember","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/create-remote-member.html","searchKeys":["createRemoteMember","open override fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.createRemoteMember"]},{"name":"open override fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin.createRemoteMember","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/create-remote-member.html","searchKeys":["createRemoteMember","open override fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.unknown.UnknownPlugin.createRemoteMember"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.channel.ChannelImpl.dispose","location":"core/com.ntt.skyway.core.channel/-channel-impl/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.channel.ChannelImpl.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalAudioStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalAudioStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalDataStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalDataStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalVideoStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalVideoStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteAudioStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteDataStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteVideoStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.sink.CustomRenderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.sink.CustomRenderer.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.dispose"]},{"name":"open override fun getStats(): WebRTCStats?","description":"com.ntt.skyway.core.channel.SubscriptionImpl.getStats","location":"core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html","searchKeys":["getStats","open override fun getStats(): WebRTCStats?","com.ntt.skyway.core.channel.SubscriptionImpl.getStats"]},{"name":"open override fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.core.channel.PublicationImpl.getStats","location":"core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html","searchKeys":["getStats","open override fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.core.channel.PublicationImpl.getStats"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.core.channel.PublicationImpl.hashCode","location":"core/com.ntt.skyway.core.channel/-publication-impl/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.core.channel.PublicationImpl.hashCode"]},{"name":"open override fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.replaceStream","location":"core/com.ntt.skyway.core.channel/-publication-impl/replace-stream.html","searchKeys":["replaceStream","open override fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.core.channel.PublicationImpl.replaceStream"]},{"name":"open override fun updateEncodings(encodings: List)","description":"com.ntt.skyway.core.channel.PublicationImpl.updateEncodings","location":"core/com.ntt.skyway.core.channel/-publication-impl/update-encodings.html","searchKeys":["updateEncodings","open override fun updateEncodings(encodings: List)","com.ntt.skyway.core.channel.PublicationImpl.updateEncodings"]},{"name":"open override val bots: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.bots","location":"core/com.ntt.skyway.core.channel/-channel-impl/bots.html","searchKeys":["bots","open override val bots: Set","com.ntt.skyway.core.channel.ChannelImpl.bots"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.PublicationImpl.channel","location":"core/com.ntt.skyway.core.channel/-publication-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.PublicationImpl.channel"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.SubscriptionImpl.channel","location":"core/com.ntt.skyway.core.channel/-subscription-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.SubscriptionImpl.channel"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.channel","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.member.LocalPersonImpl.channel"]},{"name":"open override val codecCapabilities: List","description":"com.ntt.skyway.core.channel.PublicationImpl.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication-impl/codec-capabilities.html","searchKeys":["codecCapabilities","open override val codecCapabilities: List","com.ntt.skyway.core.channel.PublicationImpl.codecCapabilities"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.PublicationImpl.contentType","location":"core/com.ntt.skyway.core.channel/-publication-impl/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.channel.PublicationImpl.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.SubscriptionImpl.contentType","location":"core/com.ntt.skyway.core.channel/-subscription-impl/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.channel.SubscriptionImpl.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalAudioStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalAudioStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalDataStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalDataStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalVideoStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalVideoStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteAudioStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteDataStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteVideoStream.contentType"]},{"name":"open override val encodings: List","description":"com.ntt.skyway.core.channel.PublicationImpl.encodings","location":"core/com.ntt.skyway.core.channel/-publication-impl/encodings.html","searchKeys":["encodings","open override val encodings: List","com.ntt.skyway.core.channel.PublicationImpl.encodings"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.ChannelImpl.id","location":"core/com.ntt.skyway.core.channel/-channel-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.ChannelImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.PublicationImpl.id","location":"core/com.ntt.skyway.core.channel/-publication-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.PublicationImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.SubscriptionImpl.id","location":"core/com.ntt.skyway.core.channel/-subscription-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.SubscriptionImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.id","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.id","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.member.RemoteMemberImpl.id"]},{"name":"open override val localPerson: LocalPerson?","description":"com.ntt.skyway.core.channel.ChannelImpl.localPerson","location":"core/com.ntt.skyway.core.channel/-channel-impl/local-person.html","searchKeys":["localPerson","open override val localPerson: LocalPerson?","com.ntt.skyway.core.channel.ChannelImpl.localPerson"]},{"name":"open override val members: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.members","location":"core/com.ntt.skyway.core.channel/-channel-impl/members.html","searchKeys":["members","open override val members: Set","com.ntt.skyway.core.channel.ChannelImpl.members"]},{"name":"open override val metadata: String","description":"com.ntt.skyway.core.channel.ChannelImpl.metadata","location":"core/com.ntt.skyway.core.channel/-channel-impl/metadata.html","searchKeys":["metadata","open override val metadata: String","com.ntt.skyway.core.channel.ChannelImpl.metadata"]},{"name":"open override val metadata: String","description":"com.ntt.skyway.core.channel.PublicationImpl.metadata","location":"core/com.ntt.skyway.core.channel/-publication-impl/metadata.html","searchKeys":["metadata","open override val metadata: String","com.ntt.skyway.core.channel.PublicationImpl.metadata"]},{"name":"open override val metadata: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.metadata","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html","searchKeys":["metadata","open override val metadata: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.metadata"]},{"name":"open override val metadata: String","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.metadata","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html","searchKeys":["metadata","open override val metadata: String","com.ntt.skyway.core.channel.member.RemoteMemberImpl.metadata"]},{"name":"open override val name: String","description":"com.ntt.skyway.core.channel.ChannelImpl.name","location":"core/com.ntt.skyway.core.channel/-channel-impl/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.core.channel.ChannelImpl.name"]},{"name":"open override val name: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.name","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.name"]},{"name":"open override val name: String","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.name","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.core.channel.member.RemoteMemberImpl.name"]},{"name":"open override val name: String","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.name","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.name"]},{"name":"open override val name: String","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin.name","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.plugin.unknown.UnknownPlugin.name"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.PublicationImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-publication-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.PublicationImpl.nativePointer"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.SubscriptionImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-subscription-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.SubscriptionImpl.nativePointer"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.member.LocalPersonImpl.nativePointer"]},{"name":"open override val origin: Publication?","description":"com.ntt.skyway.core.channel.PublicationImpl.origin","location":"core/com.ntt.skyway.core.channel/-publication-impl/origin.html","searchKeys":["origin","open override val origin: Publication?","com.ntt.skyway.core.channel.PublicationImpl.origin"]},{"name":"open override val preferredEncodingId: String","description":"com.ntt.skyway.core.channel.SubscriptionImpl.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription-impl/preferred-encoding-id.html","searchKeys":["preferredEncodingId","open override val preferredEncodingId: String","com.ntt.skyway.core.channel.SubscriptionImpl.preferredEncodingId"]},{"name":"open override val publication: Publication","description":"com.ntt.skyway.core.channel.SubscriptionImpl.publication","location":"core/com.ntt.skyway.core.channel/-subscription-impl/publication.html","searchKeys":["publication","open override val publication: Publication","com.ntt.skyway.core.channel.SubscriptionImpl.publication"]},{"name":"open override val publications: List","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.publications","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/publications.html","searchKeys":["publications","open override val publications: List","com.ntt.skyway.core.channel.member.LocalPersonImpl.publications"]},{"name":"open override val publications: List","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.publications","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/publications.html","searchKeys":["publications","open override val publications: List","com.ntt.skyway.core.channel.member.RemoteMemberImpl.publications"]},{"name":"open override val publications: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.publications","location":"core/com.ntt.skyway.core.channel/-channel-impl/publications.html","searchKeys":["publications","open override val publications: Set","com.ntt.skyway.core.channel.ChannelImpl.publications"]},{"name":"open override val publisher: Member","description":"com.ntt.skyway.core.channel.PublicationImpl.publisher","location":"core/com.ntt.skyway.core.channel/-publication-impl/publisher.html","searchKeys":["publisher","open override val publisher: Member","com.ntt.skyway.core.channel.PublicationImpl.publisher"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.LocalPerson.side","location":"core/com.ntt.skyway.core.channel.member/-local-person/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.LocalPerson.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.side","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.LocalPersonImpl.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.RemoteMember.side","location":"core/com.ntt.skyway.core.channel.member/-remote-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.RemoteMember.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.side","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.RemoteMemberImpl.side"]},{"name":"open override val side: Stream.Side","description":"com.ntt.skyway.core.content.local.LocalStream.side","location":"core/com.ntt.skyway.core.content.local/-local-stream/side.html","searchKeys":["side","open override val side: Stream.Side","com.ntt.skyway.core.content.local.LocalStream.side"]},{"name":"open override val side: Stream.Side","description":"com.ntt.skyway.core.content.remote.RemoteStream.side","location":"core/com.ntt.skyway.core.content.remote/-remote-stream/side.html","searchKeys":["side","open override val side: Stream.Side","com.ntt.skyway.core.content.remote.RemoteStream.side"]},{"name":"open override val sink: VideoSink","description":"com.ntt.skyway.core.content.sink.CustomRenderer.sink","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/sink.html","searchKeys":["sink","open override val sink: VideoSink","com.ntt.skyway.core.content.sink.CustomRenderer.sink"]},{"name":"open override val state: Channel.State","description":"com.ntt.skyway.core.channel.ChannelImpl.state","location":"core/com.ntt.skyway.core.channel/-channel-impl/state.html","searchKeys":["state","open override val state: Channel.State","com.ntt.skyway.core.channel.ChannelImpl.state"]},{"name":"open override val state: Member.State","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.state","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/state.html","searchKeys":["state","open override val state: Member.State","com.ntt.skyway.core.channel.member.LocalPersonImpl.state"]},{"name":"open override val state: Member.State","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.state","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/state.html","searchKeys":["state","open override val state: Member.State","com.ntt.skyway.core.channel.member.RemoteMemberImpl.state"]},{"name":"open override val state: Publication.State","description":"com.ntt.skyway.core.channel.PublicationImpl.state","location":"core/com.ntt.skyway.core.channel/-publication-impl/state.html","searchKeys":["state","open override val state: Publication.State","com.ntt.skyway.core.channel.PublicationImpl.state"]},{"name":"open override val state: Subscription.State","description":"com.ntt.skyway.core.channel.SubscriptionImpl.state","location":"core/com.ntt.skyway.core.channel/-subscription-impl/state.html","searchKeys":["state","open override val state: Subscription.State","com.ntt.skyway.core.channel.SubscriptionImpl.state"]},{"name":"open override val stream: LocalStream?","description":"com.ntt.skyway.core.channel.PublicationImpl.stream","location":"core/com.ntt.skyway.core.channel/-publication-impl/stream.html","searchKeys":["stream","open override val stream: LocalStream?","com.ntt.skyway.core.channel.PublicationImpl.stream"]},{"name":"open override val stream: RemoteStream?","description":"com.ntt.skyway.core.channel.SubscriptionImpl.stream","location":"core/com.ntt.skyway.core.channel/-subscription-impl/stream.html","searchKeys":["stream","open override val stream: RemoteStream?","com.ntt.skyway.core.channel.SubscriptionImpl.stream"]},{"name":"open override val subType: String","description":"com.ntt.skyway.core.channel.member.LocalPerson.subType","location":"core/com.ntt.skyway.core.channel.member/-local-person/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.core.channel.member.LocalPerson.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subType","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.subType","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.plugin.remotePerson.RemotePerson.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.plugin.unknown.Unknown.subType","location":"core/com.ntt.skyway.plugin.unknown/-unknown/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.plugin.unknown.Unknown.subType"]},{"name":"open override val subscriber: Member","description":"com.ntt.skyway.core.channel.SubscriptionImpl.subscriber","location":"core/com.ntt.skyway.core.channel/-subscription-impl/subscriber.html","searchKeys":["subscriber","open override val subscriber: Member","com.ntt.skyway.core.channel.SubscriptionImpl.subscriber"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.PublicationImpl.subscriptions","location":"core/com.ntt.skyway.core.channel/-publication-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.PublicationImpl.subscriptions"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscriptions"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.member.RemoteMemberImpl.subscriptions"]},{"name":"open override val subscriptions: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.subscriptions","location":"core/com.ntt.skyway.core.channel/-channel-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: Set","com.ntt.skyway.core.channel.ChannelImpl.subscriptions"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.core.channel.member.LocalPerson.type","location":"core/com.ntt.skyway.core.channel.member/-local-person/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.core.channel.member.LocalPerson.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.type","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.core.channel.member.LocalPersonImpl.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.type","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.plugin.remotePerson.RemotePerson.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.plugin.unknown.Unknown.type","location":"core/com.ntt.skyway.plugin.unknown/-unknown/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.plugin.unknown.Unknown.type"]},{"name":"open override var isSetup: Boolean = false","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/is-setup.html","searchKeys":["isSetup","open override var isSetup: Boolean = false","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.isSetup"]},{"name":"open override var isSetup: Boolean = true","description":"com.ntt.skyway.core.content.sink.CustomRenderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/is-setup.html","searchKeys":["isSetup","open override var isSetup: Boolean = true","com.ntt.skyway.core.content.sink.CustomRenderer.isSetup"]},{"name":"open override var onCanceledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.SubscriptionImpl.onCanceledHandler","location":"core/com.ntt.skyway.core.channel/-subscription-impl/on-canceled-handler.html","searchKeys":["onCanceledHandler","open override var onCanceledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.SubscriptionImpl.onCanceledHandler"]},{"name":"open override var onClosedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onClosedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-closed-handler.html","searchKeys":["onClosedHandler","open override var onClosedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onClosedHandler"]},{"name":"open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onConnectionStateChangedHandler"]},{"name":"open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.SubscriptionImpl.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-subscription-impl/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.core.channel.SubscriptionImpl.onConnectionStateChangedHandler"]},{"name":"open override var onDisabledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onDisabledHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-disabled-handler.html","searchKeys":["onDisabledHandler","open override var onDisabledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onDisabledHandler"]},{"name":"open override var onEnabledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onEnabledHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-enabled-handler.html","searchKeys":["onEnabledHandler","open override var onEnabledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onEnabledHandler"]},{"name":"open override var onErrorHandler: (Exception) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onErrorHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-error-handler.html","searchKeys":["onErrorHandler","open override var onErrorHandler: (Exception) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onErrorHandler"]},{"name":"open override var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-left-handler.html","searchKeys":["onLeftHandler","open override var onLeftHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onLeftHandler"]},{"name":"open override var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-left-handler.html","searchKeys":["onLeftHandler","open override var onLeftHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onLeftHandler"]},{"name":"open override var onMemberJoinedHandler: (member: Member) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberJoinedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","open override var onMemberJoinedHandler: (member: Member) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberJoinedHandler"]},{"name":"open override var onMemberLeftHandler: (member: Member) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberLeftHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","open override var onMemberLeftHandler: (member: Member) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberLeftHandler"]},{"name":"open override var onMemberListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","open override var onMemberListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberListChangedHandler"]},{"name":"open override var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","open override var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onMetadataUpdatedHandler"]},{"name":"open override var onPublicationDisabledHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationDisabledHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","open override var onPublicationDisabledHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationDisabledHandler"]},{"name":"open override var onPublicationEnabledHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationEnabledHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","open override var onPublicationEnabledHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationEnabledHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","open override var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationMetadataUpdatedHandler"]},{"name":"open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationSubscribedHandler"]},{"name":"open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationSubscribedHandler"]},{"name":"open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationUnsubscribedHandler"]},{"name":"open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationUnsubscribedHandler"]},{"name":"open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onStreamPublishedHandler"]},{"name":"open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamPublishedHandler"]},{"name":"open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onStreamUnpublishedHandler"]},{"name":"open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamUnpublishedHandler"]},{"name":"open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onSubscribedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onUnpublishedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","open override var onUnpublishedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onUnpublishedHandler"]},{"name":"open override var onUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","open override var onUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onUnsubscribedHandler"]},{"name":"open suspend override fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.cancel","location":"core/com.ntt.skyway.core.channel/-publication-impl/cancel.html","searchKeys":["cancel","open suspend override fun cancel(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.cancel"]},{"name":"open suspend override fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.SubscriptionImpl.cancel","location":"core/com.ntt.skyway.core.channel/-subscription-impl/cancel.html","searchKeys":["cancel","open suspend override fun cancel(): Boolean","com.ntt.skyway.core.channel.SubscriptionImpl.cancel"]},{"name":"open suspend override fun close(): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.close","location":"core/com.ntt.skyway.core.channel/-channel-impl/close.html","searchKeys":["close","open suspend override fun close(): Boolean","com.ntt.skyway.core.channel.ChannelImpl.close"]},{"name":"open suspend override fun disable(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.disable","location":"core/com.ntt.skyway.core.channel/-publication-impl/disable.html","searchKeys":["disable","open suspend override fun disable(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.disable"]},{"name":"open suspend override fun enable(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.enable","location":"core/com.ntt.skyway.core.channel/-publication-impl/enable.html","searchKeys":["enable","open suspend override fun enable(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.enable"]},{"name":"open suspend override fun join(memberInit: Member.Init): LocalPerson?","description":"com.ntt.skyway.core.channel.ChannelImpl.join","location":"core/com.ntt.skyway.core.channel/-channel-impl/join.html","searchKeys":["join","open suspend override fun join(memberInit: Member.Init): LocalPerson?","com.ntt.skyway.core.channel.ChannelImpl.join"]},{"name":"open suspend override fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.leave","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/leave.html","searchKeys":["leave","open suspend override fun leave(): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.leave"]},{"name":"open suspend override fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.leave","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/leave.html","searchKeys":["leave","open suspend override fun leave(): Boolean","com.ntt.skyway.core.channel.member.RemoteMemberImpl.leave"]},{"name":"open suspend override fun leave(member: Member): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.leave","location":"core/com.ntt.skyway.core.channel/-channel-impl/leave.html","searchKeys":["leave","open suspend override fun leave(member: Member): Boolean","com.ntt.skyway.core.channel.ChannelImpl.leave"]},{"name":"open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.publish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html","searchKeys":["publish","open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?","com.ntt.skyway.core.channel.member.LocalPersonImpl.publish"]},{"name":"open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html","searchKeys":["subscribe","open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe"]},{"name":"open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html","searchKeys":["subscribe","open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe"]},{"name":"open suspend override fun unpublish(publication: Publication): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publication: Publication): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish"]},{"name":"open suspend override fun unpublish(publicationId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publicationId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish"]},{"name":"open suspend override fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unsubscribe.html","searchKeys":["unsubscribe","open suspend override fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe"]},{"name":"open suspend override fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unsubscribe.html","searchKeys":["unsubscribe","open suspend override fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel/-channel-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.ChannelImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel/-publication-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.PublicationImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.RemoteMemberImpl.updateMetadata"]},{"name":"override val channel: Channel","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.channel","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/channel.html","searchKeys":["channel","override val channel: Channel","com.ntt.skyway.core.channel.member.RemoteMemberImpl.channel"]},{"name":"override val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/native-pointer.html","searchKeys":["nativePointer","override val nativePointer: Long","com.ntt.skyway.core.channel.member.RemoteMemberImpl.nativePointer"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.create","location":"core/com.ntt.skyway.core.channel/-channel/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.create"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.create","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.create"]},{"name":"suspend fun find(name: String? = null, id: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.find","location":"core/com.ntt.skyway.core.channel/-channel/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.find"]},{"name":"suspend fun find(name: String? = null, id: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.find","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.find"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.findOrCreate","location":"core/com.ntt.skyway.core.channel/-channel/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.findOrCreate"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.findOrCreate","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.findOrCreate"]},{"name":"suspend fun setup(context: Context, option: SkyWayContext.Options, onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null): Boolean","description":"com.ntt.skyway.core.SkyWayContext.setup","location":"core/com.ntt.skyway.core/-sky-way-context/setup.html","searchKeys":["setup","suspend fun setup(context: Context, option: SkyWayContext.Options, onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null): Boolean","com.ntt.skyway.core.SkyWayContext.setup"]},{"name":"suspend fun subscribe(publicationId: String): Subscription?","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.subscribe","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String): Subscription?","com.ntt.skyway.plugin.remotePerson.RemotePerson.subscribe"]},{"name":"suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.unsubscribe","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.plugin.remotePerson.RemotePerson.unsubscribe"]},{"name":"val audioRecord: Nothing?","description":"com.ntt.skyway.core.content.local.source.AudioSource.audioRecord","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/audio-record.html","searchKeys":["audioRecord","val audioRecord: Nothing?","com.ntt.skyway.core.content.local.source.AudioSource.audioRecord"]},{"name":"val audioTrack: Nothing?","description":"com.ntt.skyway.core.content.sink.AudioDestination.audioTrack","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/audio-track.html","searchKeys":["audioTrack","val audioTrack: Nothing?","com.ntt.skyway.core.content.sink.AudioDestination.audioTrack"]},{"name":"val authToken: String","description":"com.ntt.skyway.core.SkyWayContext.Options.authToken","location":"core/com.ntt.skyway.core/-sky-way-context/-options/auth-token.html","searchKeys":["authToken","val authToken: String","com.ntt.skyway.core.SkyWayContext.Options.authToken"]},{"name":"val availableMembers: Set","description":"com.ntt.skyway.core.channel.Repository.availableMembers","location":"core/com.ntt.skyway.core.channel/-repository/available-members.html","searchKeys":["availableMembers","val availableMembers: Set","com.ntt.skyway.core.channel.Repository.availableMembers"]},{"name":"val availablePublications: Set","description":"com.ntt.skyway.core.channel.Repository.availablePublications","location":"core/com.ntt.skyway.core.channel/-repository/available-publications.html","searchKeys":["availablePublications","val availablePublications: Set","com.ntt.skyway.core.channel.Repository.availablePublications"]},{"name":"val availableSubscriptions: Set","description":"com.ntt.skyway.core.channel.Repository.availableSubscriptions","location":"core/com.ntt.skyway.core.channel/-repository/available-subscriptions.html","searchKeys":["availableSubscriptions","val availableSubscriptions: Set","com.ntt.skyway.core.channel.Repository.availableSubscriptions"]},{"name":"val channel: Channel","description":"com.ntt.skyway.core.channel.member.Member.Dto.channel","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/channel.html","searchKeys":["channel","val channel: Channel","com.ntt.skyway.core.channel.member.Member.Dto.channel"]},{"name":"val codecCapabilities: List? = null","description":"com.ntt.skyway.core.channel.Publication.Options.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication/-options/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List? = null","com.ntt.skyway.core.channel.Publication.Options.codecCapabilities"]},{"name":"val dataU: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataU","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-u.html","searchKeys":["dataU","val dataU: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataU"]},{"name":"val dataV: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataV","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-v.html","searchKeys":["dataV","val dataV: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataV"]},{"name":"val dataY: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataY","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-y.html","searchKeys":["dataY","val dataY: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataY"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.IceParams.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.RtcApi.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.Sfu.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.Signaling.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.Signaling.domain"]},{"name":"val enableHardwareCodec: Boolean = true","description":"com.ntt.skyway.core.SkyWayContext.Options.enableHardwareCodec","location":"core/com.ntt.skyway.core/-sky-way-context/-options/enable-hardware-codec.html","searchKeys":["enableHardwareCodec","val enableHardwareCodec: Boolean = true","com.ntt.skyway.core.SkyWayContext.Options.enableHardwareCodec"]},{"name":"val encodings: List? = null","description":"com.ntt.skyway.core.channel.Publication.Options.encodings","location":"core/com.ntt.skyway.core.channel/-publication/-options/encodings.html","searchKeys":["encodings","val encodings: List? = null","com.ntt.skyway.core.channel.Publication.Options.encodings"]},{"name":"val frameRate: Int = 30","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.frameRate","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/frame-rate.html","searchKeys":["frameRate","val frameRate: Int = 30","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.frameRate"]},{"name":"val height: Int","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.height","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/height.html","searchKeys":["height","val height: Int","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.height"]},{"name":"val height: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.height","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/height.html","searchKeys":["height","val height: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.height"]},{"name":"val iceParams: SkyWayContext.IceParams? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.iceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-options/ice-params.html","searchKeys":["iceParams","val iceParams: SkyWayContext.IceParams? = null","com.ntt.skyway.core.SkyWayContext.Options.iceParams"]},{"name":"val id: String","description":"com.ntt.skyway.core.channel.member.Member.Dto.id","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.channel.member.Member.Dto.id"]},{"name":"val id: String","description":"com.ntt.skyway.core.content.Stream.id","location":"core/com.ntt.skyway.core.content/-stream/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.content.Stream.id"]},{"name":"val id: String","description":"com.ntt.skyway.core.content.WebRTCStatsReport.id","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.content.WebRTCStatsReport.id"]},{"name":"val id: String?","description":"com.ntt.skyway.core.content.Encoding.id","location":"core/com.ntt.skyway.core.content/-encoding/id.html","searchKeys":["id","val id: String?","com.ntt.skyway.core.content.Encoding.id"]},{"name":"val isEnabled: Boolean? = null","description":"com.ntt.skyway.core.channel.Publication.Options.isEnabled","location":"core/com.ntt.skyway.core.channel/-publication/-options/is-enabled.html","searchKeys":["isEnabled","val isEnabled: Boolean? = null","com.ntt.skyway.core.channel.Publication.Options.isEnabled"]},{"name":"val isStarted: Boolean","description":"com.ntt.skyway.core.content.local.source.AudioSource.isStarted","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/is-started.html","searchKeys":["isStarted","val isStarted: Boolean","com.ntt.skyway.core.content.local.source.AudioSource.isStarted"]},{"name":"val keepAliveIntervalSec: Int = 30","description":"com.ntt.skyway.core.channel.member.Member.Init.keepAliveIntervalSec","location":"core/com.ntt.skyway.core.channel.member/-member/-init/keep-alive-interval-sec.html","searchKeys":["keepAliveIntervalSec","val keepAliveIntervalSec: Int = 30","com.ntt.skyway.core.channel.member.Member.Init.keepAliveIntervalSec"]},{"name":"val literal: String","description":"com.ntt.skyway.core.content.Codec.MimeType.literal","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/literal.html","searchKeys":["literal","val literal: String","com.ntt.skyway.core.content.Codec.MimeType.literal"]},{"name":"val logLevel: Logger.LogLevel","description":"com.ntt.skyway.core.SkyWayContext.Options.logLevel","location":"core/com.ntt.skyway.core/-sky-way-context/-options/log-level.html","searchKeys":["logLevel","val logLevel: Logger.LogLevel","com.ntt.skyway.core.SkyWayContext.Options.logLevel"]},{"name":"val maxBitrate: Int? = null","description":"com.ntt.skyway.core.content.Encoding.maxBitrate","location":"core/com.ntt.skyway.core.content/-encoding/max-bitrate.html","searchKeys":["maxBitrate","val maxBitrate: Int? = null","com.ntt.skyway.core.content.Encoding.maxBitrate"]},{"name":"val maxFramerate: Double? = null","description":"com.ntt.skyway.core.content.Encoding.maxFramerate","location":"core/com.ntt.skyway.core.content/-encoding/max-framerate.html","searchKeys":["maxFramerate","val maxFramerate: Double? = null","com.ntt.skyway.core.content.Encoding.maxFramerate"]},{"name":"val members: Set","description":"com.ntt.skyway.core.channel.Repository.members","location":"core/com.ntt.skyway.core.channel/-repository/members.html","searchKeys":["members","val members: Set","com.ntt.skyway.core.channel.Repository.members"]},{"name":"val message: String","description":"com.ntt.skyway.core.SkyWayContext.Error.message","location":"core/com.ntt.skyway.core/-sky-way-context/-error/message.html","searchKeys":["message","val message: String","com.ntt.skyway.core.SkyWayContext.Error.message"]},{"name":"val metadata: String?","description":"com.ntt.skyway.core.channel.member.Member.Init.metadata","location":"core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html","searchKeys":["metadata","val metadata: String?","com.ntt.skyway.core.channel.member.Member.Init.metadata"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.core.channel.Publication.Options.metadata","location":"core/com.ntt.skyway.core.channel/-publication/-options/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.core.channel.Publication.Options.metadata"]},{"name":"val mimeType: String","description":"com.ntt.skyway.core.content.Codec.mimeType","location":"core/com.ntt.skyway.core.content/-codec/mime-type.html","searchKeys":["mimeType","val mimeType: String","com.ntt.skyway.core.content.Codec.mimeType"]},{"name":"val name: String","description":"com.ntt.skyway.core.channel.member.Member.Dto.name","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/name.html","searchKeys":["name","val name: String","com.ntt.skyway.core.channel.member.Member.Dto.name"]},{"name":"val name: String","description":"com.ntt.skyway.core.channel.member.Member.Init.name","location":"core/com.ntt.skyway.core.channel.member/-member/-init/name.html","searchKeys":["name","val name: String","com.ntt.skyway.core.channel.member.Member.Init.name"]},{"name":"val nativePointer: Long","description":"com.ntt.skyway.core.channel.ChannelImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-channel-impl/native-pointer.html","searchKeys":["nativePointer","val nativePointer: Long","com.ntt.skyway.core.channel.ChannelImpl.nativePointer"]},{"name":"val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.Member.Dto.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/native-pointer.html","searchKeys":["nativePointer","val nativePointer: Long","com.ntt.skyway.core.channel.member.Member.Dto.nativePointer"]},{"name":"val parameters: Codec.Parameters","description":"com.ntt.skyway.core.content.Codec.parameters","location":"core/com.ntt.skyway.core.content/-codec/parameters.html","searchKeys":["parameters","val parameters: Codec.Parameters","com.ntt.skyway.core.content.Codec.parameters"]},{"name":"val params: Map","description":"com.ntt.skyway.core.content.WebRTCStatsReport.params","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/params.html","searchKeys":["params","val params: Map","com.ntt.skyway.core.content.WebRTCStatsReport.params"]},{"name":"val plugins: MutableList","description":"com.ntt.skyway.core.SkyWayContext.plugins","location":"core/com.ntt.skyway.core/-sky-way-context/plugins.html","searchKeys":["plugins","val plugins: MutableList","com.ntt.skyway.core.SkyWayContext.plugins"]},{"name":"val policy: SkyWayContext.TurnPolicy? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.policy","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/policy.html","searchKeys":["policy","val policy: SkyWayContext.TurnPolicy? = null","com.ntt.skyway.core.SkyWayContext.RtcConfig.policy"]},{"name":"val preferredEncodingId: String? = null","description":"com.ntt.skyway.core.channel.Subscription.Options.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription/-options/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String? = null","com.ntt.skyway.core.channel.Subscription.Options.preferredEncodingId"]},{"name":"val publications: List","description":"com.ntt.skyway.core.channel.Repository.publications","location":"core/com.ntt.skyway.core.channel/-repository/publications.html","searchKeys":["publications","val publications: List","com.ntt.skyway.core.channel.Repository.publications"]},{"name":"val reports: List","description":"com.ntt.skyway.core.content.WebRTCStats.reports","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/reports.html","searchKeys":["reports","val reports: List","com.ntt.skyway.core.content.WebRTCStats.reports"]},{"name":"val repository: Repository","description":"com.ntt.skyway.core.channel.ChannelImpl.repository","location":"core/com.ntt.skyway.core.channel/-channel-impl/repository.html","searchKeys":["repository","val repository: Repository","com.ntt.skyway.core.channel.ChannelImpl.repository"]},{"name":"val rtcApi: SkyWayContext.RtcApi? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.rtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-options/rtc-api.html","searchKeys":["rtcApi","val rtcApi: SkyWayContext.RtcApi? = null","com.ntt.skyway.core.SkyWayContext.Options.rtcApi"]},{"name":"val rtcConfig: SkyWayContext.RtcConfig? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.rtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-options/rtc-config.html","searchKeys":["rtcConfig","val rtcConfig: SkyWayContext.RtcConfig? = null","com.ntt.skyway.core.SkyWayContext.Options.rtcConfig"]},{"name":"val scaleResolutionDownBy: Double? = null","description":"com.ntt.skyway.core.content.Encoding.scaleResolutionDownBy","location":"core/com.ntt.skyway.core.content/-encoding/scale-resolution-down-by.html","searchKeys":["scaleResolutionDownBy","val scaleResolutionDownBy: Double? = null","com.ntt.skyway.core.content.Encoding.scaleResolutionDownBy"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.IceParams.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.RtcApi.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.Sfu.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.Signaling.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.Signaling.secure"]},{"name":"val sfu: SkyWayContext.Sfu? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-options/sfu.html","searchKeys":["sfu","val sfu: SkyWayContext.Sfu? = null","com.ntt.skyway.core.SkyWayContext.Options.sfu"]},{"name":"val signaling: SkyWayContext.Signaling? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-options/signaling.html","searchKeys":["signaling","val signaling: SkyWayContext.Signaling? = null","com.ntt.skyway.core.SkyWayContext.Options.signaling"]},{"name":"val strideU: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideU","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-u.html","searchKeys":["strideU","val strideU: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideU"]},{"name":"val strideV: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideV","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-v.html","searchKeys":["strideV","val strideV: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideV"]},{"name":"val strideY: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideY","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-y.html","searchKeys":["strideY","val strideY: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideY"]},{"name":"val string: String","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.string","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/string.html","searchKeys":["string","val string: String","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.string"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.core.channel.Repository.subscriptions","location":"core/com.ntt.skyway.core.channel/-repository/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.core.channel.Repository.subscriptions"]},{"name":"val subtype: String","description":"com.ntt.skyway.core.channel.member.Member.Init.subtype","location":"core/com.ntt.skyway.core.channel.member/-member/-init/subtype.html","searchKeys":["subtype","val subtype: String","com.ntt.skyway.core.channel.member.Member.Init.subtype"]},{"name":"val timeout: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.timeout","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/timeout.html","searchKeys":["timeout","val timeout: Int? = null","com.ntt.skyway.core.SkyWayContext.RtcConfig.timeout"]},{"name":"val token: SkyWayContext.Token? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.token","location":"core/com.ntt.skyway.core/-sky-way-context/-options/token.html","searchKeys":["token","val token: SkyWayContext.Token? = null","com.ntt.skyway.core.SkyWayContext.Options.token"]},{"name":"val tokenReminderTimeSec: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.Token.tokenReminderTimeSec","location":"core/com.ntt.skyway.core/-sky-way-context/-token/token-reminder-time-sec.html","searchKeys":["tokenReminderTimeSec","val tokenReminderTimeSec: Int? = null","com.ntt.skyway.core.SkyWayContext.Token.tokenReminderTimeSec"]},{"name":"val track: AudioTrack","description":"com.ntt.skyway.core.content.local.LocalAudioStream.track","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/track.html","searchKeys":["track","val track: AudioTrack","com.ntt.skyway.core.content.local.LocalAudioStream.track"]},{"name":"val type: Member.Type","description":"com.ntt.skyway.core.channel.member.Member.Init.type","location":"core/com.ntt.skyway.core.channel.member/-member/-init/type.html","searchKeys":["type","val type: Member.Type","com.ntt.skyway.core.channel.member.Member.Init.type"]},{"name":"val type: String","description":"com.ntt.skyway.core.content.WebRTCStatsReport.type","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/type.html","searchKeys":["type","val type: String","com.ntt.skyway.core.content.WebRTCStatsReport.type"]},{"name":"val useDtx: Boolean? = null","description":"com.ntt.skyway.core.content.Codec.Parameters.useDtx","location":"core/com.ntt.skyway.core.content/-codec/-parameters/use-dtx.html","searchKeys":["useDtx","val useDtx: Boolean? = null","com.ntt.skyway.core.content.Codec.Parameters.useDtx"]},{"name":"val value: Int","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.value","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/value.html","searchKeys":["value","val value: Int","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.value"]},{"name":"val version: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.version","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/version.html","searchKeys":["version","val version: Int? = null","com.ntt.skyway.core.SkyWayContext.IceParams.version"]},{"name":"val version: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.version","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/version.html","searchKeys":["version","val version: Int? = null","com.ntt.skyway.core.SkyWayContext.Sfu.version"]},{"name":"val webRTCLog: Boolean = false","description":"com.ntt.skyway.core.SkyWayContext.Options.webRTCLog","location":"core/com.ntt.skyway.core/-sky-way-context/-options/web-r-t-c-log.html","searchKeys":["webRTCLog","val webRTCLog: Boolean = false","com.ntt.skyway.core.SkyWayContext.Options.webRTCLog"]},{"name":"val width: Int","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.width","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/width.html","searchKeys":["width","val width: Int","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.width"]},{"name":"val width: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.width","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/width.html","searchKeys":["width","val width: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.width"]},{"name":"var isSetup: Boolean = false","description":"com.ntt.skyway.core.SkyWayContext.isSetup","location":"core/com.ntt.skyway.core/-sky-way-context/is-setup.html","searchKeys":["isSetup","var isSetup: Boolean = false","com.ntt.skyway.core.SkyWayContext.isSetup"]},{"name":"var logLevel: Logger.LogLevel","description":"com.ntt.skyway.core.util.Logger.logLevel","location":"core/com.ntt.skyway.core.util/-logger/log-level.html","searchKeys":["logLevel","var logLevel: Logger.LogLevel","com.ntt.skyway.core.util.Logger.logLevel"]},{"name":"var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.AudioSource.onAudioBufferHandler","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html","searchKeys":["onAudioBufferHandler","var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","com.ntt.skyway.core.content.local.source.AudioSource.onAudioBufferHandler"]},{"name":"var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.sink.AudioDestination.onAudioBufferHandler","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/on-audio-buffer-handler.html","searchKeys":["onAudioBufferHandler","var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","com.ntt.skyway.core.content.sink.AudioDestination.onAudioBufferHandler"]},{"name":"var onCameraChangeErrorHandler: (reason: String?) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangeErrorHandler","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/on-camera-change-error-handler.html","searchKeys":["onCameraChangeErrorHandler","var onCameraChangeErrorHandler: (reason: String?) -> Unit? = null","com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangeErrorHandler"]},{"name":"var onCameraChangedHandler: (success: Boolean) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangedHandler","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/on-camera-changed-handler.html","searchKeys":["onCameraChangedHandler","var onCameraChangedHandler: (success: Boolean) -> Unit? = null","com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangedHandler"]},{"name":"var onDataBufferHandler: (data: ByteArray) -> Unit? = null","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.onDataBufferHandler","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/on-data-buffer-handler.html","searchKeys":["onDataBufferHandler","var onDataBufferHandler: (data: ByteArray) -> Unit? = null","com.ntt.skyway.core.content.remote.RemoteDataStream.onDataBufferHandler"]},{"name":"var onDataHandler: (data: String) -> Unit? = null","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.onDataHandler","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/on-data-handler.html","searchKeys":["onDataHandler","var onDataHandler: (data: String) -> Unit? = null","com.ntt.skyway.core.content.remote.RemoteDataStream.onDataHandler"]},{"name":"var onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onErrorHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-error-handler.html","searchKeys":["onErrorHandler","var onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onErrorHandler"]},{"name":"var onFrameHandler: (buffer: CustomRenderer.VideoFrameBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.sink.CustomRenderer.onFrameHandler","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/on-frame-handler.html","searchKeys":["onFrameHandler","var onFrameHandler: (buffer: CustomRenderer.VideoFrameBuffer) -> Unit? = null","com.ntt.skyway.core.content.sink.CustomRenderer.onFrameHandler"]},{"name":"var onLogHandler: (level: Logger.LogLevel, message: String) -> Unit? = null","description":"com.ntt.skyway.core.util.Logger.onLogHandler","location":"core/com.ntt.skyway.core.util/-logger/on-log-handler.html","searchKeys":["onLogHandler","var onLogHandler: (level: Logger.LogLevel, message: String) -> Unit? = null","com.ntt.skyway.core.util.Logger.onLogHandler"]},{"name":"var onReconnectStartHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onReconnectStartHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-start-handler.html","searchKeys":["onReconnectStartHandler","var onReconnectStartHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onReconnectStartHandler"]},{"name":"var onReconnectSuccessHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onReconnectSuccessHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-success-handler.html","searchKeys":["onReconnectSuccessHandler","var onReconnectSuccessHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onReconnectSuccessHandler"]},{"name":"var onTokenExpiredHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onTokenExpiredHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-expired-handler.html","searchKeys":["onTokenExpiredHandler","var onTokenExpiredHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onTokenExpiredHandler"]},{"name":"var onTokenRefreshingNeededHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeededHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-refreshing-needed-handler.html","searchKeys":["onTokenRefreshingNeededHandler","var onTokenRefreshingNeededHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeededHandler"]},{"name":"var webRTCLog: Boolean = false","description":"com.ntt.skyway.core.util.Logger.webRTCLog","location":"core/com.ntt.skyway.core.util/-logger/web-r-t-c-log.html","searchKeys":["webRTCLog","var webRTCLog: Boolean = false","com.ntt.skyway.core.util.Logger.webRTCLog"]}] +[{"name":"AUDIO()","description":"com.ntt.skyway.core.content.Stream.ContentType.AUDIO","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-a-u-d-i-o/index.html","searchKeys":["AUDIO","AUDIO()","com.ntt.skyway.core.content.Stream.ContentType.AUDIO"]},{"name":"AV1(\"video/AV1\")","description":"com.ntt.skyway.core.content.Codec.MimeType.AV1","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-a-v1/index.html","searchKeys":["AV1","AV1(\"video/AV1\")","com.ntt.skyway.core.content.Codec.MimeType.AV1"]},{"name":"BOT()","description":"com.ntt.skyway.core.channel.member.Member.Type.BOT","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-b-o-t/index.html","searchKeys":["BOT","BOT()","com.ntt.skyway.core.channel.member.Member.Type.BOT"]},{"name":"CANCELED()","description":"com.ntt.skyway.core.channel.Publication.State.CANCELED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-c-a-n-c-e-l-e-d/index.html","searchKeys":["CANCELED","CANCELED()","com.ntt.skyway.core.channel.Publication.State.CANCELED"]},{"name":"CANCELED()","description":"com.ntt.skyway.core.channel.Subscription.State.CANCELED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-c-a-n-c-e-l-e-d/index.html","searchKeys":["CANCELED","CANCELED()","com.ntt.skyway.core.channel.Subscription.State.CANCELED"]},{"name":"CLOSED(\"CLOSED\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CLOSED","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-c-l-o-s-e-d/index.html","searchKeys":["CLOSED","CLOSED(\"CLOSED\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CLOSED"]},{"name":"CLOSED()","description":"com.ntt.skyway.core.channel.Channel.State.CLOSED","location":"core/com.ntt.skyway.core.channel/-channel/-state/-c-l-o-s-e-d/index.html","searchKeys":["CLOSED","CLOSED()","com.ntt.skyway.core.channel.Channel.State.CLOSED"]},{"name":"CONNECTING(\"CONNECTING\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CONNECTING","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-c-o-n-n-e-c-t-i-n-g/index.html","searchKeys":["CONNECTING","CONNECTING(\"CONNECTING\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.CONNECTING"]},{"name":"DATA()","description":"com.ntt.skyway.core.content.Stream.ContentType.DATA","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-d-a-t-a/index.html","searchKeys":["DATA","DATA()","com.ntt.skyway.core.content.Stream.ContentType.DATA"]},{"name":"DEBUG()","description":"com.ntt.skyway.core.util.Logger.LogLevel.DEBUG","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-d-e-b-u-g/index.html","searchKeys":["DEBUG","DEBUG()","com.ntt.skyway.core.util.Logger.LogLevel.DEBUG"]},{"name":"DISABLE()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.DISABLE","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-d-i-s-a-b-l-e/index.html","searchKeys":["DISABLE","DISABLE()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.DISABLE"]},{"name":"DISABLED()","description":"com.ntt.skyway.core.channel.Publication.State.DISABLED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED()","com.ntt.skyway.core.channel.Publication.State.DISABLED"]},{"name":"DISABLED()","description":"com.ntt.skyway.core.channel.Subscription.State.DISABLED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-d-i-s-a-b-l-e-d/index.html","searchKeys":["DISABLED","DISABLED()","com.ntt.skyway.core.channel.Subscription.State.DISABLED"]},{"name":"ENABLE()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.ENABLE","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-e-n-a-b-l-e/index.html","searchKeys":["ENABLE","ENABLE()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.ENABLE"]},{"name":"ENABLED()","description":"com.ntt.skyway.core.channel.Publication.State.ENABLED","location":"core/com.ntt.skyway.core.channel/-publication/-state/-e-n-a-b-l-e-d/index.html","searchKeys":["ENABLED","ENABLED()","com.ntt.skyway.core.channel.Publication.State.ENABLED"]},{"name":"ENABLED()","description":"com.ntt.skyway.core.channel.Subscription.State.ENABLED","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-e-n-a-b-l-e-d/index.html","searchKeys":["ENABLED","ENABLED()","com.ntt.skyway.core.channel.Subscription.State.ENABLED"]},{"name":"ERROR()","description":"com.ntt.skyway.core.util.Logger.LogLevel.ERROR","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-e-r-r-o-r/index.html","searchKeys":["ERROR","ERROR()","com.ntt.skyway.core.util.Logger.LogLevel.ERROR"]},{"name":"ESTABLISHING(\"ESTABLISHING\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.ESTABLISHING","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-e-s-t-a-b-l-i-s-h-i-n-g/index.html","searchKeys":["ESTABLISHING","ESTABLISHING(\"ESTABLISHING\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.ESTABLISHING"]},{"name":"FILL_PARENT(-1)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.FILL_PARENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-f-i-l-l_-p-a-r-e-n-t/index.html","searchKeys":["FILL_PARENT","FILL_PARENT(-1)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.FILL_PARENT"]},{"name":"H264(\"video/h264\")","description":"com.ntt.skyway.core.content.Codec.MimeType.H264","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-h264/index.html","searchKeys":["H264","H264(\"video/h264\")","com.ntt.skyway.core.content.Codec.MimeType.H264"]},{"name":"INFO()","description":"com.ntt.skyway.core.util.Logger.LogLevel.INFO","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-i-n-f-o/index.html","searchKeys":["INFO","INFO()","com.ntt.skyway.core.util.Logger.LogLevel.INFO"]},{"name":"JOINED()","description":"com.ntt.skyway.core.channel.member.Member.State.JOINED","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-j-o-i-n-e-d/index.html","searchKeys":["JOINED","JOINED()","com.ntt.skyway.core.channel.member.Member.State.JOINED"]},{"name":"LEFT()","description":"com.ntt.skyway.core.channel.member.Member.State.LEFT","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-l-e-f-t/index.html","searchKeys":["LEFT","LEFT()","com.ntt.skyway.core.channel.member.Member.State.LEFT"]},{"name":"LOCAL()","description":"com.ntt.skyway.core.channel.member.Member.Side.LOCAL","location":"core/com.ntt.skyway.core.channel.member/-member/-side/-l-o-c-a-l/index.html","searchKeys":["LOCAL","LOCAL()","com.ntt.skyway.core.channel.member.Member.Side.LOCAL"]},{"name":"LOCAL()","description":"com.ntt.skyway.core.content.Stream.Side.LOCAL","location":"core/com.ntt.skyway.core.content/-stream/-side/-l-o-c-a-l/index.html","searchKeys":["LOCAL","LOCAL()","com.ntt.skyway.core.content.Stream.Side.LOCAL"]},{"name":"MATCH_PARENT(-1)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.MATCH_PARENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-m-a-t-c-h_-p-a-r-e-n-t/index.html","searchKeys":["MATCH_PARENT","MATCH_PARENT(-1)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.MATCH_PARENT"]},{"name":"NONE()","description":"com.ntt.skyway.core.util.Logger.LogLevel.NONE","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-n-o-n-e/index.html","searchKeys":["NONE","NONE()","com.ntt.skyway.core.util.Logger.LogLevel.NONE"]},{"name":"OPEN(\"OPEN\")","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.OPEN","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/-o-p-e-n/index.html","searchKeys":["OPEN","OPEN(\"OPEN\")","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.OPEN"]},{"name":"OPENED()","description":"com.ntt.skyway.core.channel.Channel.State.OPENED","location":"core/com.ntt.skyway.core.channel/-channel/-state/-o-p-e-n-e-d/index.html","searchKeys":["OPENED","OPENED()","com.ntt.skyway.core.channel.Channel.State.OPENED"]},{"name":"OPUS(\"audio/opus\")","description":"com.ntt.skyway.core.content.Codec.MimeType.OPUS","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-o-p-u-s/index.html","searchKeys":["OPUS","OPUS(\"audio/opus\")","com.ntt.skyway.core.content.Codec.MimeType.OPUS"]},{"name":"PERSON()","description":"com.ntt.skyway.core.channel.member.Member.Type.PERSON","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-p-e-r-s-o-n/index.html","searchKeys":["PERSON","PERSON()","com.ntt.skyway.core.channel.member.Member.Type.PERSON"]},{"name":"RED(\"audio/red\")","description":"com.ntt.skyway.core.content.Codec.MimeType.RED","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-r-e-d/index.html","searchKeys":["RED","RED(\"audio/red\")","com.ntt.skyway.core.content.Codec.MimeType.RED"]},{"name":"REMOTE()","description":"com.ntt.skyway.core.channel.member.Member.Side.REMOTE","location":"core/com.ntt.skyway.core.channel.member/-member/-side/-r-e-m-o-t-e/index.html","searchKeys":["REMOTE","REMOTE()","com.ntt.skyway.core.channel.member.Member.Side.REMOTE"]},{"name":"REMOTE()","description":"com.ntt.skyway.core.content.Stream.Side.REMOTE","location":"core/com.ntt.skyway.core.content/-stream/-side/-r-e-m-o-t-e/index.html","searchKeys":["REMOTE","REMOTE()","com.ntt.skyway.core.content.Stream.Side.REMOTE"]},{"name":"SCALE_ASPECT_BALANCED()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_BALANCED","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-b-a-l-a-n-c-e-d/index.html","searchKeys":["SCALE_ASPECT_BALANCED","SCALE_ASPECT_BALANCED()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_BALANCED"]},{"name":"SCALE_ASPECT_FILL()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FILL","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-f-i-l-l/index.html","searchKeys":["SCALE_ASPECT_FILL","SCALE_ASPECT_FILL()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FILL"]},{"name":"SCALE_ASPECT_FIT()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FIT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-s-c-a-l-e_-a-s-p-e-c-t_-f-i-t/index.html","searchKeys":["SCALE_ASPECT_FIT","SCALE_ASPECT_FIT()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.SCALE_ASPECT_FIT"]},{"name":"TURN_ONLY()","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy.TURN_ONLY","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/-t-u-r-n_-o-n-l-y/index.html","searchKeys":["TURN_ONLY","TURN_ONLY()","com.ntt.skyway.core.SkyWayContext.TurnPolicy.TURN_ONLY"]},{"name":"UNKNOWN()","description":"com.ntt.skyway.core.channel.member.Member.Type.UNKNOWN","location":"core/com.ntt.skyway.core.channel.member/-member/-type/-u-n-k-n-o-w-n/index.html","searchKeys":["UNKNOWN","UNKNOWN()","com.ntt.skyway.core.channel.member.Member.Type.UNKNOWN"]},{"name":"VERBOSE()","description":"com.ntt.skyway.core.util.Logger.LogLevel.VERBOSE","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-v-e-r-b-o-s-e/index.html","searchKeys":["VERBOSE","VERBOSE()","com.ntt.skyway.core.util.Logger.LogLevel.VERBOSE"]},{"name":"VIDEO()","description":"com.ntt.skyway.core.content.Stream.ContentType.VIDEO","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-v-i-d-e-o/index.html","searchKeys":["VIDEO","VIDEO()","com.ntt.skyway.core.content.Stream.ContentType.VIDEO"]},{"name":"VP8(\"video/VP8\")","description":"com.ntt.skyway.core.content.Codec.MimeType.VP8","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-v-p8/index.html","searchKeys":["VP8","VP8(\"video/VP8\")","com.ntt.skyway.core.content.Codec.MimeType.VP8"]},{"name":"VP9(\"video/VP9\")","description":"com.ntt.skyway.core.content.Codec.MimeType.VP9","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-v-p9/index.html","searchKeys":["VP9","VP9(\"video/VP9\")","com.ntt.skyway.core.content.Codec.MimeType.VP9"]},{"name":"WARN()","description":"com.ntt.skyway.core.util.Logger.LogLevel.WARN","location":"core/com.ntt.skyway.core.util/-logger/-log-level/-w-a-r-n/index.html","searchKeys":["WARN","WARN()","com.ntt.skyway.core.util.Logger.LogLevel.WARN"]},{"name":"WRAP_CONTENT(-2)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.WRAP_CONTENT","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/-w-r-a-p_-c-o-n-t-e-n-t/index.html","searchKeys":["WRAP_CONTENT","WRAP_CONTENT(-2)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.WRAP_CONTENT"]},{"name":"abstract class LocalPerson : Member","description":"com.ntt.skyway.core.channel.member.LocalPerson","location":"core/com.ntt.skyway.core.channel.member/-local-person/index.html","searchKeys":["LocalPerson","abstract class LocalPerson : Member","com.ntt.skyway.core.channel.member.LocalPerson"]},{"name":"abstract class LocalStream : Stream","description":"com.ntt.skyway.core.content.local.LocalStream","location":"core/com.ntt.skyway.core.content.local/-local-stream/index.html","searchKeys":["LocalStream","abstract class LocalStream : Stream","com.ntt.skyway.core.content.local.LocalStream"]},{"name":"abstract class RemoteMember : Member","description":"com.ntt.skyway.core.channel.member.RemoteMember","location":"core/com.ntt.skyway.core.channel.member/-remote-member/index.html","searchKeys":["RemoteMember","abstract class RemoteMember : Member","com.ntt.skyway.core.channel.member.RemoteMember"]},{"name":"abstract class RemoteMemberImpl : RemoteMember","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/index.html","searchKeys":["RemoteMemberImpl","abstract class RemoteMemberImpl : RemoteMember","com.ntt.skyway.core.channel.member.RemoteMemberImpl"]},{"name":"abstract class RemoteStream : Stream","description":"com.ntt.skyway.core.content.remote.RemoteStream","location":"core/com.ntt.skyway.core.content.remote/-remote-stream/index.html","searchKeys":["RemoteStream","abstract class RemoteStream : Stream","com.ntt.skyway.core.content.remote.RemoteStream"]},{"name":"abstract class Stream(id: String, nativePointer: Long)","description":"com.ntt.skyway.core.content.Stream","location":"core/com.ntt.skyway.core.content/-stream/index.html","searchKeys":["Stream","abstract class Stream(id: String, nativePointer: Long)","com.ntt.skyway.core.content.Stream"]},{"name":"abstract class VideoSource","description":"com.ntt.skyway.core.content.local.source.VideoSource","location":"core/com.ntt.skyway.core.content.local.source/-video-source/index.html","searchKeys":["VideoSource","abstract class VideoSource","com.ntt.skyway.core.content.local.source.VideoSource"]},{"name":"abstract fun changePreferredEncoding(id: String)","description":"com.ntt.skyway.core.channel.Subscription.changePreferredEncoding","location":"core/com.ntt.skyway.core.channel/-subscription/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","abstract fun changePreferredEncoding(id: String)","com.ntt.skyway.core.channel.Subscription.changePreferredEncoding"]},{"name":"abstract fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.Plugin.createRemoteMember","location":"core/com.ntt.skyway.plugin/-plugin/create-remote-member.html","searchKeys":["createRemoteMember","abstract fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.Plugin.createRemoteMember"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.channel.Channel.dispose","location":"core/com.ntt.skyway.core.channel/-channel/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.channel.Channel.dispose"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.content.Stream.dispose","location":"core/com.ntt.skyway.core.content/-stream/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.content.Stream.dispose"]},{"name":"abstract fun dispose()","description":"com.ntt.skyway.core.content.sink.Renderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-renderer/dispose.html","searchKeys":["dispose","abstract fun dispose()","com.ntt.skyway.core.content.sink.Renderer.dispose"]},{"name":"abstract fun getStats(): WebRTCStats?","description":"com.ntt.skyway.core.channel.Subscription.getStats","location":"core/com.ntt.skyway.core.channel/-subscription/get-stats.html","searchKeys":["getStats","abstract fun getStats(): WebRTCStats?","com.ntt.skyway.core.channel.Subscription.getStats"]},{"name":"abstract fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.core.channel.Publication.getStats","location":"core/com.ntt.skyway.core.channel/-publication/get-stats.html","searchKeys":["getStats","abstract fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.core.channel.Publication.getStats"]},{"name":"abstract fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.core.channel.Publication.replaceStream","location":"core/com.ntt.skyway.core.channel/-publication/replace-stream.html","searchKeys":["replaceStream","abstract fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.core.channel.Publication.replaceStream"]},{"name":"abstract fun updateEncodings(encodings: List)","description":"com.ntt.skyway.core.channel.Publication.updateEncodings","location":"core/com.ntt.skyway.core.channel/-publication/update-encodings.html","searchKeys":["updateEncodings","abstract fun updateEncodings(encodings: List)","com.ntt.skyway.core.channel.Publication.updateEncodings"]},{"name":"abstract suspend fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.Publication.cancel","location":"core/com.ntt.skyway.core.channel/-publication/cancel.html","searchKeys":["cancel","abstract suspend fun cancel(): Boolean","com.ntt.skyway.core.channel.Publication.cancel"]},{"name":"abstract suspend fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.Subscription.cancel","location":"core/com.ntt.skyway.core.channel/-subscription/cancel.html","searchKeys":["cancel","abstract suspend fun cancel(): Boolean","com.ntt.skyway.core.channel.Subscription.cancel"]},{"name":"abstract suspend fun close(): Boolean","description":"com.ntt.skyway.core.channel.Channel.close","location":"core/com.ntt.skyway.core.channel/-channel/close.html","searchKeys":["close","abstract suspend fun close(): Boolean","com.ntt.skyway.core.channel.Channel.close"]},{"name":"abstract suspend fun disable(): Boolean","description":"com.ntt.skyway.core.channel.Publication.disable","location":"core/com.ntt.skyway.core.channel/-publication/disable.html","searchKeys":["disable","abstract suspend fun disable(): Boolean","com.ntt.skyway.core.channel.Publication.disable"]},{"name":"abstract suspend fun enable(): Boolean","description":"com.ntt.skyway.core.channel.Publication.enable","location":"core/com.ntt.skyway.core.channel/-publication/enable.html","searchKeys":["enable","abstract suspend fun enable(): Boolean","com.ntt.skyway.core.channel.Publication.enable"]},{"name":"abstract suspend fun join(memberInit: Member.Init): LocalPerson?","description":"com.ntt.skyway.core.channel.Channel.join","location":"core/com.ntt.skyway.core.channel/-channel/join.html","searchKeys":["join","abstract suspend fun join(memberInit: Member.Init): LocalPerson?","com.ntt.skyway.core.channel.Channel.join"]},{"name":"abstract suspend fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.Member.leave","location":"core/com.ntt.skyway.core.channel.member/-member/leave.html","searchKeys":["leave","abstract suspend fun leave(): Boolean","com.ntt.skyway.core.channel.member.Member.leave"]},{"name":"abstract suspend fun leave(member: Member): Boolean","description":"com.ntt.skyway.core.channel.Channel.leave","location":"core/com.ntt.skyway.core.channel/-channel/leave.html","searchKeys":["leave","abstract suspend fun leave(member: Member): Boolean","com.ntt.skyway.core.channel.Channel.leave"]},{"name":"abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?","description":"com.ntt.skyway.core.channel.member.LocalPerson.publish","location":"core/com.ntt.skyway.core.channel.member/-local-person/publish.html","searchKeys":["publish","abstract suspend fun publish(localStream: LocalStream, options: Publication.Options? = null): Publication?","com.ntt.skyway.core.channel.member.LocalPerson.publish"]},{"name":"abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPerson.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html","searchKeys":["subscribe","abstract suspend fun subscribe(publication: Publication, options: Subscription.Options? = null): Subscription?","com.ntt.skyway.core.channel.member.LocalPerson.subscribe"]},{"name":"abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPerson.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/subscribe.html","searchKeys":["subscribe","abstract suspend fun subscribe(publicationId: String, options: Subscription.Options? = null): Subscription?","com.ntt.skyway.core.channel.member.LocalPerson.subscribe"]},{"name":"abstract suspend fun unpublish(publication: Publication): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person/unpublish.html","searchKeys":["unpublish","abstract suspend fun unpublish(publication: Publication): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unpublish"]},{"name":"abstract suspend fun unpublish(publicationId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person/unpublish.html","searchKeys":["unpublish","abstract suspend fun unpublish(publicationId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unpublish"]},{"name":"abstract suspend fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/unsubscribe.html","searchKeys":["unsubscribe","abstract suspend fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe"]},{"name":"abstract suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person/unsubscribe.html","searchKeys":["unsubscribe","abstract suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPerson.unsubscribe"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.Channel.updateMetadata","location":"core/com.ntt.skyway.core.channel/-channel/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.Channel.updateMetadata"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.Publication.updateMetadata","location":"core/com.ntt.skyway.core.channel/-publication/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.Publication.updateMetadata"]},{"name":"abstract suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.Member.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-member/update-metadata.html","searchKeys":["updateMetadata","abstract suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.Member.updateMetadata"]},{"name":"abstract val bots: Set","description":"com.ntt.skyway.core.channel.Channel.bots","location":"core/com.ntt.skyway.core.channel/-channel/bots.html","searchKeys":["bots","abstract val bots: Set","com.ntt.skyway.core.channel.Channel.bots"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.Publication.channel","location":"core/com.ntt.skyway.core.channel/-publication/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.Publication.channel"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.Subscription.channel","location":"core/com.ntt.skyway.core.channel/-subscription/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.Subscription.channel"]},{"name":"abstract val channel: Channel","description":"com.ntt.skyway.core.channel.member.Member.channel","location":"core/com.ntt.skyway.core.channel.member/-member/channel.html","searchKeys":["channel","abstract val channel: Channel","com.ntt.skyway.core.channel.member.Member.channel"]},{"name":"abstract val codecCapabilities: List","description":"com.ntt.skyway.core.channel.Publication.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication/codec-capabilities.html","searchKeys":["codecCapabilities","abstract val codecCapabilities: List","com.ntt.skyway.core.channel.Publication.codecCapabilities"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.Publication.contentType","location":"core/com.ntt.skyway.core.channel/-publication/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.channel.Publication.contentType"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.Subscription.contentType","location":"core/com.ntt.skyway.core.channel/-subscription/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.channel.Subscription.contentType"]},{"name":"abstract val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.Stream.contentType","location":"core/com.ntt.skyway.core.content/-stream/content-type.html","searchKeys":["contentType","abstract val contentType: Stream.ContentType","com.ntt.skyway.core.content.Stream.contentType"]},{"name":"abstract val encodings: List","description":"com.ntt.skyway.core.channel.Publication.encodings","location":"core/com.ntt.skyway.core.channel/-publication/encodings.html","searchKeys":["encodings","abstract val encodings: List","com.ntt.skyway.core.channel.Publication.encodings"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Channel.id","location":"core/com.ntt.skyway.core.channel/-channel/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Channel.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Publication.id","location":"core/com.ntt.skyway.core.channel/-publication/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Publication.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.Subscription.id","location":"core/com.ntt.skyway.core.channel/-subscription/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.Subscription.id"]},{"name":"abstract val id: String","description":"com.ntt.skyway.core.channel.member.Member.id","location":"core/com.ntt.skyway.core.channel.member/-member/id.html","searchKeys":["id","abstract val id: String","com.ntt.skyway.core.channel.member.Member.id"]},{"name":"abstract val localPerson: LocalPerson?","description":"com.ntt.skyway.core.channel.Channel.localPerson","location":"core/com.ntt.skyway.core.channel/-channel/local-person.html","searchKeys":["localPerson","abstract val localPerson: LocalPerson?","com.ntt.skyway.core.channel.Channel.localPerson"]},{"name":"abstract val members: Set","description":"com.ntt.skyway.core.channel.Channel.members","location":"core/com.ntt.skyway.core.channel/-channel/members.html","searchKeys":["members","abstract val members: Set","com.ntt.skyway.core.channel.Channel.members"]},{"name":"abstract val metadata: String","description":"com.ntt.skyway.core.channel.Publication.metadata","location":"core/com.ntt.skyway.core.channel/-publication/metadata.html","searchKeys":["metadata","abstract val metadata: String","com.ntt.skyway.core.channel.Publication.metadata"]},{"name":"abstract val metadata: String?","description":"com.ntt.skyway.core.channel.Channel.metadata","location":"core/com.ntt.skyway.core.channel/-channel/metadata.html","searchKeys":["metadata","abstract val metadata: String?","com.ntt.skyway.core.channel.Channel.metadata"]},{"name":"abstract val metadata: String?","description":"com.ntt.skyway.core.channel.member.Member.metadata","location":"core/com.ntt.skyway.core.channel.member/-member/metadata.html","searchKeys":["metadata","abstract val metadata: String?","com.ntt.skyway.core.channel.member.Member.metadata"]},{"name":"abstract val name: String","description":"com.ntt.skyway.plugin.Plugin.name","location":"core/com.ntt.skyway.plugin/-plugin/name.html","searchKeys":["name","abstract val name: String","com.ntt.skyway.plugin.Plugin.name"]},{"name":"abstract val name: String?","description":"com.ntt.skyway.core.channel.Channel.name","location":"core/com.ntt.skyway.core.channel/-channel/name.html","searchKeys":["name","abstract val name: String?","com.ntt.skyway.core.channel.Channel.name"]},{"name":"abstract val name: String?","description":"com.ntt.skyway.core.channel.member.Member.name","location":"core/com.ntt.skyway.core.channel.member/-member/name.html","searchKeys":["name","abstract val name: String?","com.ntt.skyway.core.channel.member.Member.name"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.Publication.nativePointer","location":"core/com.ntt.skyway.core.channel/-publication/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.Publication.nativePointer"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.Subscription.nativePointer","location":"core/com.ntt.skyway.core.channel/-subscription/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.Subscription.nativePointer"]},{"name":"abstract val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.Member.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-member/native-pointer.html","searchKeys":["nativePointer","abstract val nativePointer: Long","com.ntt.skyway.core.channel.member.Member.nativePointer"]},{"name":"abstract val origin: Publication?","description":"com.ntt.skyway.core.channel.Publication.origin","location":"core/com.ntt.skyway.core.channel/-publication/origin.html","searchKeys":["origin","abstract val origin: Publication?","com.ntt.skyway.core.channel.Publication.origin"]},{"name":"abstract val preferredEncodingId: String","description":"com.ntt.skyway.core.channel.Subscription.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription/preferred-encoding-id.html","searchKeys":["preferredEncodingId","abstract val preferredEncodingId: String","com.ntt.skyway.core.channel.Subscription.preferredEncodingId"]},{"name":"abstract val publication: Publication","description":"com.ntt.skyway.core.channel.Subscription.publication","location":"core/com.ntt.skyway.core.channel/-subscription/publication.html","searchKeys":["publication","abstract val publication: Publication","com.ntt.skyway.core.channel.Subscription.publication"]},{"name":"abstract val publications: List","description":"com.ntt.skyway.core.channel.member.Member.publications","location":"core/com.ntt.skyway.core.channel.member/-member/publications.html","searchKeys":["publications","abstract val publications: List","com.ntt.skyway.core.channel.member.Member.publications"]},{"name":"abstract val publications: Set","description":"com.ntt.skyway.core.channel.Channel.publications","location":"core/com.ntt.skyway.core.channel/-channel/publications.html","searchKeys":["publications","abstract val publications: Set","com.ntt.skyway.core.channel.Channel.publications"]},{"name":"abstract val publisher: Member","description":"com.ntt.skyway.core.channel.Publication.publisher","location":"core/com.ntt.skyway.core.channel/-publication/publisher.html","searchKeys":["publisher","abstract val publisher: Member","com.ntt.skyway.core.channel.Publication.publisher"]},{"name":"abstract val side: Member.Side","description":"com.ntt.skyway.core.channel.member.Member.side","location":"core/com.ntt.skyway.core.channel.member/-member/side.html","searchKeys":["side","abstract val side: Member.Side","com.ntt.skyway.core.channel.member.Member.side"]},{"name":"abstract val side: Stream.Side","description":"com.ntt.skyway.core.content.Stream.side","location":"core/com.ntt.skyway.core.content/-stream/side.html","searchKeys":["side","abstract val side: Stream.Side","com.ntt.skyway.core.content.Stream.side"]},{"name":"abstract val sink: VideoSink","description":"com.ntt.skyway.core.content.sink.Renderer.sink","location":"core/com.ntt.skyway.core.content.sink/-renderer/sink.html","searchKeys":["sink","abstract val sink: VideoSink","com.ntt.skyway.core.content.sink.Renderer.sink"]},{"name":"abstract val state: Channel.State","description":"com.ntt.skyway.core.channel.Channel.state","location":"core/com.ntt.skyway.core.channel/-channel/state.html","searchKeys":["state","abstract val state: Channel.State","com.ntt.skyway.core.channel.Channel.state"]},{"name":"abstract val state: Member.State","description":"com.ntt.skyway.core.channel.member.Member.state","location":"core/com.ntt.skyway.core.channel.member/-member/state.html","searchKeys":["state","abstract val state: Member.State","com.ntt.skyway.core.channel.member.Member.state"]},{"name":"abstract val state: Publication.State","description":"com.ntt.skyway.core.channel.Publication.state","location":"core/com.ntt.skyway.core.channel/-publication/state.html","searchKeys":["state","abstract val state: Publication.State","com.ntt.skyway.core.channel.Publication.state"]},{"name":"abstract val state: Subscription.State","description":"com.ntt.skyway.core.channel.Subscription.state","location":"core/com.ntt.skyway.core.channel/-subscription/state.html","searchKeys":["state","abstract val state: Subscription.State","com.ntt.skyway.core.channel.Subscription.state"]},{"name":"abstract val stream: RemoteStream?","description":"com.ntt.skyway.core.channel.Subscription.stream","location":"core/com.ntt.skyway.core.channel/-subscription/stream.html","searchKeys":["stream","abstract val stream: RemoteStream?","com.ntt.skyway.core.channel.Subscription.stream"]},{"name":"abstract val stream: Stream?","description":"com.ntt.skyway.core.channel.Publication.stream","location":"core/com.ntt.skyway.core.channel/-publication/stream.html","searchKeys":["stream","abstract val stream: Stream?","com.ntt.skyway.core.channel.Publication.stream"]},{"name":"abstract val subType: String","description":"com.ntt.skyway.core.channel.member.Member.subType","location":"core/com.ntt.skyway.core.channel.member/-member/sub-type.html","searchKeys":["subType","abstract val subType: String","com.ntt.skyway.core.channel.member.Member.subType"]},{"name":"abstract val subscriber: Member","description":"com.ntt.skyway.core.channel.Subscription.subscriber","location":"core/com.ntt.skyway.core.channel/-subscription/subscriber.html","searchKeys":["subscriber","abstract val subscriber: Member","com.ntt.skyway.core.channel.Subscription.subscriber"]},{"name":"abstract val subscriptions: List","description":"com.ntt.skyway.core.channel.Publication.subscriptions","location":"core/com.ntt.skyway.core.channel/-publication/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: List","com.ntt.skyway.core.channel.Publication.subscriptions"]},{"name":"abstract val subscriptions: List","description":"com.ntt.skyway.core.channel.member.Member.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-member/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: List","com.ntt.skyway.core.channel.member.Member.subscriptions"]},{"name":"abstract val subscriptions: Set","description":"com.ntt.skyway.core.channel.Channel.subscriptions","location":"core/com.ntt.skyway.core.channel/-channel/subscriptions.html","searchKeys":["subscriptions","abstract val subscriptions: Set","com.ntt.skyway.core.channel.Channel.subscriptions"]},{"name":"abstract val type: Member.Type","description":"com.ntt.skyway.core.channel.member.Member.type","location":"core/com.ntt.skyway.core.channel.member/-member/type.html","searchKeys":["type","abstract val type: Member.Type","com.ntt.skyway.core.channel.member.Member.type"]},{"name":"abstract var isSetup: Boolean","description":"com.ntt.skyway.core.content.sink.Renderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-renderer/is-setup.html","searchKeys":["isSetup","abstract var isSetup: Boolean","com.ntt.skyway.core.content.sink.Renderer.isSetup"]},{"name":"abstract var onCanceledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Subscription.onCanceledHandler","location":"core/com.ntt.skyway.core.channel/-subscription/on-canceled-handler.html","searchKeys":["onCanceledHandler","abstract var onCanceledHandler: () -> Unit?","com.ntt.skyway.core.channel.Subscription.onCanceledHandler"]},{"name":"abstract var onClosedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onClosedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-closed-handler.html","searchKeys":["onClosedHandler","abstract var onClosedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onClosedHandler"]},{"name":"abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","com.ntt.skyway.core.channel.Publication.onConnectionStateChangedHandler"]},{"name":"abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","description":"com.ntt.skyway.core.channel.Subscription.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-subscription/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","abstract var onConnectionStateChangedHandler: (state: String) -> Unit?","com.ntt.skyway.core.channel.Subscription.onConnectionStateChangedHandler"]},{"name":"abstract var onDisabledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onDisabledHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-disabled-handler.html","searchKeys":["onDisabledHandler","abstract var onDisabledHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onDisabledHandler"]},{"name":"abstract var onEnabledHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onEnabledHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-enabled-handler.html","searchKeys":["onEnabledHandler","abstract var onEnabledHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onEnabledHandler"]},{"name":"abstract var onErrorHandler: (Exception) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onErrorHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-error-handler.html","searchKeys":["onErrorHandler","abstract var onErrorHandler: (Exception) -> Unit?","com.ntt.skyway.core.channel.Channel.onErrorHandler"]},{"name":"abstract var onLeftHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-left-handler.html","searchKeys":["onLeftHandler","abstract var onLeftHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onLeftHandler"]},{"name":"abstract var onMemberJoinedHandler: (member: Member) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberJoinedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","abstract var onMemberJoinedHandler: (member: Member) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberJoinedHandler"]},{"name":"abstract var onMemberLeftHandler: (member: Member) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberLeftHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","abstract var onMemberLeftHandler: (member: Member) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberLeftHandler"]},{"name":"abstract var onMemberListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","abstract var onMemberListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberListChangedHandler"]},{"name":"abstract var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMemberMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","abstract var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onMemberMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.Publication.onMetadataUpdatedHandler"]},{"name":"abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","abstract var onMetadataUpdatedHandler: (metadata: String) -> Unit?","com.ntt.skyway.core.channel.member.Member.onMetadataUpdatedHandler"]},{"name":"abstract var onPublicationDisabledHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationDisabledHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","abstract var onPublicationDisabledHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationDisabledHandler"]},{"name":"abstract var onPublicationEnabledHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationEnabledHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","abstract var onPublicationEnabledHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationEnabledHandler"]},{"name":"abstract var onPublicationListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","abstract var onPublicationListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationListChangedHandler"]},{"name":"abstract var onPublicationListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","abstract var onPublicationListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onPublicationListChangedHandler"]},{"name":"abstract var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","abstract var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationMetadataUpdatedHandler"]},{"name":"abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationSubscribedHandler"]},{"name":"abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","abstract var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onPublicationSubscribedHandler"]},{"name":"abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Channel.onPublicationUnsubscribedHandler"]},{"name":"abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","abstract var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onPublicationUnsubscribedHandler"]},{"name":"abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onStreamPublishedHandler"]},{"name":"abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","abstract var onStreamPublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onStreamPublishedHandler"]},{"name":"abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.Channel.onStreamUnpublishedHandler"]},{"name":"abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","description":"com.ntt.skyway.core.channel.member.LocalPerson.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","abstract var onStreamUnpublishedHandler: (publication: Publication) -> Unit?","com.ntt.skyway.core.channel.member.LocalPerson.onStreamUnpublishedHandler"]},{"name":"abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","abstract var onSubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Publication.onSubscribedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Channel.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Channel.onSubscriptionListChangedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onSubscriptionListChangedHandler"]},{"name":"abstract var onSubscriptionListChangedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.member.Member.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-member/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","abstract var onSubscriptionListChangedHandler: () -> Unit?","com.ntt.skyway.core.channel.member.Member.onSubscriptionListChangedHandler"]},{"name":"abstract var onUnpublishedHandler: () -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","abstract var onUnpublishedHandler: () -> Unit?","com.ntt.skyway.core.channel.Publication.onUnpublishedHandler"]},{"name":"abstract var onUnsubscribedHandler: (subscription: Subscription) -> Unit?","description":"com.ntt.skyway.core.channel.Publication.onUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","abstract var onUnsubscribedHandler: (subscription: Subscription) -> Unit?","com.ntt.skyway.core.channel.Publication.onUnsubscribedHandler"]},{"name":"annotation class SkyWayOptIn","description":"com.ntt.skyway.core.SkyWayOptIn","location":"core/com.ntt.skyway.core/-sky-way-opt-in/index.html","searchKeys":["SkyWayOptIn","annotation class SkyWayOptIn","com.ntt.skyway.core.SkyWayOptIn"]},{"name":"class ChannelImpl : Channel","description":"com.ntt.skyway.core.channel.ChannelImpl","location":"core/com.ntt.skyway.core.channel/-channel-impl/index.html","searchKeys":["ChannelImpl","class ChannelImpl : Channel","com.ntt.skyway.core.channel.ChannelImpl"]},{"name":"class CustomRenderer : Renderer","description":"com.ntt.skyway.core.content.sink.CustomRenderer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/index.html","searchKeys":["CustomRenderer","class CustomRenderer : Renderer","com.ntt.skyway.core.content.sink.CustomRenderer"]},{"name":"class CustomVideoFrameSource(width: Int, height: Int) : VideoSource","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/index.html","searchKeys":["CustomVideoFrameSource","class CustomVideoFrameSource(width: Int, height: Int) : VideoSource","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource"]},{"name":"class DataSource","description":"com.ntt.skyway.core.content.local.source.DataSource","location":"core/com.ntt.skyway.core.content.local.source/-data-source/index.html","searchKeys":["DataSource","class DataSource","com.ntt.skyway.core.content.local.source.DataSource"]},{"name":"class LocalAudioStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalAudioStream","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/index.html","searchKeys":["LocalAudioStream","class LocalAudioStream : LocalStream","com.ntt.skyway.core.content.local.LocalAudioStream"]},{"name":"class LocalDataStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalDataStream","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/index.html","searchKeys":["LocalDataStream","class LocalDataStream : LocalStream","com.ntt.skyway.core.content.local.LocalDataStream"]},{"name":"class LocalPersonImpl : LocalPerson","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/index.html","searchKeys":["LocalPersonImpl","class LocalPersonImpl : LocalPerson","com.ntt.skyway.core.channel.member.LocalPersonImpl"]},{"name":"class LocalVideoStream : LocalStream","description":"com.ntt.skyway.core.content.local.LocalVideoStream","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/index.html","searchKeys":["LocalVideoStream","class LocalVideoStream : LocalStream","com.ntt.skyway.core.content.local.LocalVideoStream"]},{"name":"class PublicationImpl : Publication","description":"com.ntt.skyway.core.channel.PublicationImpl","location":"core/com.ntt.skyway.core.channel/-publication-impl/index.html","searchKeys":["PublicationImpl","class PublicationImpl : Publication","com.ntt.skyway.core.channel.PublicationImpl"]},{"name":"class RemoteAudioStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/index.html","searchKeys":["RemoteAudioStream","class RemoteAudioStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteAudioStream"]},{"name":"class RemoteDataStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteDataStream","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/index.html","searchKeys":["RemoteDataStream","class RemoteDataStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteDataStream"]},{"name":"class RemotePerson : RemoteMemberImpl","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/index.html","searchKeys":["RemotePerson","class RemotePerson : RemoteMemberImpl","com.ntt.skyway.plugin.remotePerson.RemotePerson"]},{"name":"class RemotePersonPlugin : Plugin","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/index.html","searchKeys":["RemotePersonPlugin","class RemotePersonPlugin : Plugin","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin"]},{"name":"class RemoteVideoStream : RemoteStream","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/index.html","searchKeys":["RemoteVideoStream","class RemoteVideoStream : RemoteStream","com.ntt.skyway.core.content.remote.RemoteVideoStream"]},{"name":"class Repository(channel: ChannelImpl)","description":"com.ntt.skyway.core.channel.Repository","location":"core/com.ntt.skyway.core.channel/-repository/index.html","searchKeys":["Repository","class Repository(channel: ChannelImpl)","com.ntt.skyway.core.channel.Repository"]},{"name":"class SubscriptionImpl : Subscription","description":"com.ntt.skyway.core.channel.SubscriptionImpl","location":"core/com.ntt.skyway.core.channel/-subscription-impl/index.html","searchKeys":["SubscriptionImpl","class SubscriptionImpl : Subscription","com.ntt.skyway.core.channel.SubscriptionImpl"]},{"name":"class SurfaceViewRenderer : FrameLayout, Renderer","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/index.html","searchKeys":["SurfaceViewRenderer","class SurfaceViewRenderer : FrameLayout, Renderer","com.ntt.skyway.core.content.sink.SurfaceViewRenderer"]},{"name":"class Unknown : RemoteMemberImpl","description":"com.ntt.skyway.plugin.unknown.Unknown","location":"core/com.ntt.skyway.plugin.unknown/-unknown/index.html","searchKeys":["Unknown","class Unknown : RemoteMemberImpl","com.ntt.skyway.plugin.unknown.Unknown"]},{"name":"class VideoFileSource(context: Context, fileName: String) : VideoSource","description":"com.ntt.skyway.core.content.local.source.VideoFileSource","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/index.html","searchKeys":["VideoFileSource","class VideoFileSource(context: Context, fileName: String) : VideoSource","com.ntt.skyway.core.content.local.source.VideoFileSource"]},{"name":"class WebSocketClient","description":"com.ntt.skyway.core.network.WebSocketClient","location":"core/com.ntt.skyway.core.network/-web-socket-client/index.html","searchKeys":["WebSocketClient","class WebSocketClient","com.ntt.skyway.core.network.WebSocketClient"]},{"name":"class WebSocketHeader(key: String, value: String)","description":"com.ntt.skyway.core.network.WebSocketHeader","location":"core/com.ntt.skyway.core.network/-web-socket-header/index.html","searchKeys":["WebSocketHeader","class WebSocketHeader(key: String, value: String)","com.ntt.skyway.core.network.WebSocketHeader"]},{"name":"const val version: String","description":"com.ntt.skyway.core.SkyWayContext.version","location":"core/com.ntt.skyway.core/-sky-way-context/version.html","searchKeys":["version","const val version: String","com.ntt.skyway.core.SkyWayContext.version"]},{"name":"data class Analytics(domain: String?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.Analytics","location":"core/com.ntt.skyway.core/-sky-way-context/-analytics/index.html","searchKeys":["Analytics","data class Analytics(domain: String?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.Analytics"]},{"name":"data class CapturingOptions(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/index.html","searchKeys":["CapturingOptions","data class CapturingOptions(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions"]},{"name":"data class Codec(mimeType: String, parameters: Codec.Parameters)","description":"com.ntt.skyway.core.content.Codec","location":"core/com.ntt.skyway.core.content/-codec/index.html","searchKeys":["Codec","data class Codec(mimeType: String, parameters: Codec.Parameters)","com.ntt.skyway.core.content.Codec"]},{"name":"data class Dto(channel: Channel, id: String, name: String?, nativePointer: Long)","description":"com.ntt.skyway.core.channel.member.Member.Dto","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/index.html","searchKeys":["Dto","data class Dto(channel: Channel, id: String, name: String?, nativePointer: Long)","com.ntt.skyway.core.channel.member.Member.Dto"]},{"name":"data class Encoding(id: String?, maxBitrate: Int?, scaleResolutionDownBy: Double?, maxFramerate: Double?)","description":"com.ntt.skyway.core.content.Encoding","location":"core/com.ntt.skyway.core.content/-encoding/index.html","searchKeys":["Encoding","data class Encoding(id: String?, maxBitrate: Int?, scaleResolutionDownBy: Double?, maxFramerate: Double?)","com.ntt.skyway.core.content.Encoding"]},{"name":"data class Error(message: String)","description":"com.ntt.skyway.core.SkyWayContext.Error","location":"core/com.ntt.skyway.core/-sky-way-context/-error/index.html","searchKeys":["Error","data class Error(message: String)","com.ntt.skyway.core.SkyWayContext.Error"]},{"name":"data class IceParams(domain: String?, version: Int?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.IceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/index.html","searchKeys":["IceParams","data class IceParams(domain: String?, version: Int?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.IceParams"]},{"name":"data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)","description":"com.ntt.skyway.core.channel.member.Member.Init","location":"core/com.ntt.skyway.core.channel.member/-member/-init/index.html","searchKeys":["Init","data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int, type: Member.Type, subtype: String)","com.ntt.skyway.core.channel.member.Member.Init"]},{"name":"data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, analytics: SkyWayContext.Analytics?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)","description":"com.ntt.skyway.core.SkyWayContext.Options","location":"core/com.ntt.skyway.core/-sky-way-context/-options/index.html","searchKeys":["Options","data class Options(authToken: String, logLevel: Logger.LogLevel, webRTCLog: Boolean, enableHardwareCodec: Boolean, rtcApi: SkyWayContext.RtcApi?, iceParams: SkyWayContext.IceParams?, signaling: SkyWayContext.Signaling?, analytics: SkyWayContext.Analytics?, rtcConfig: SkyWayContext.RtcConfig?, sfu: SkyWayContext.Sfu?, token: SkyWayContext.Token?)","com.ntt.skyway.core.SkyWayContext.Options"]},{"name":"data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?)","description":"com.ntt.skyway.core.channel.Publication.Options","location":"core/com.ntt.skyway.core.channel/-publication/-options/index.html","searchKeys":["Options","data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?)","com.ntt.skyway.core.channel.Publication.Options"]},{"name":"data class Options(preferredEncodingId: String?)","description":"com.ntt.skyway.core.channel.Subscription.Options","location":"core/com.ntt.skyway.core.channel/-subscription/-options/index.html","searchKeys":["Options","data class Options(preferredEncodingId: String?)","com.ntt.skyway.core.channel.Subscription.Options"]},{"name":"data class Parameters(useDtx: Boolean?)","description":"com.ntt.skyway.core.content.Codec.Parameters","location":"core/com.ntt.skyway.core.content/-codec/-parameters/index.html","searchKeys":["Parameters","data class Parameters(useDtx: Boolean?)","com.ntt.skyway.core.content.Codec.Parameters"]},{"name":"data class RtcApi(domain: String?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.RtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/index.html","searchKeys":["RtcApi","data class RtcApi(domain: String?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.RtcApi"]},{"name":"data class RtcConfig(timeout: Int?, policy: SkyWayContext.TurnPolicy?)","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/index.html","searchKeys":["RtcConfig","data class RtcConfig(timeout: Int?, policy: SkyWayContext.TurnPolicy?)","com.ntt.skyway.core.SkyWayContext.RtcConfig"]},{"name":"data class Sfu(domain: String?, version: Int?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.Sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/index.html","searchKeys":["Sfu","data class Sfu(domain: String?, version: Int?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.Sfu"]},{"name":"data class Signaling(domain: String?, secure: Boolean?)","description":"com.ntt.skyway.core.SkyWayContext.Signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/index.html","searchKeys":["Signaling","data class Signaling(domain: String?, secure: Boolean?)","com.ntt.skyway.core.SkyWayContext.Signaling"]},{"name":"data class Token(tokenReminderTimeSec: Int?)","description":"com.ntt.skyway.core.SkyWayContext.Token","location":"core/com.ntt.skyway.core/-sky-way-context/-token/index.html","searchKeys":["Token","data class Token(tokenReminderTimeSec: Int?)","com.ntt.skyway.core.SkyWayContext.Token"]},{"name":"data class VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/index.html","searchKeys":["VideoFrameBuffer","data class VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer"]},{"name":"data class WebRTCStats(reports: List)","description":"com.ntt.skyway.core.content.WebRTCStats","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/index.html","searchKeys":["WebRTCStats","data class WebRTCStats(reports: List)","com.ntt.skyway.core.content.WebRTCStats"]},{"name":"data class WebRTCStatsReport(id: String, type: String, params: Map)","description":"com.ntt.skyway.core.content.WebRTCStatsReport","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/index.html","searchKeys":["WebRTCStatsReport","data class WebRTCStatsReport(id: String, type: String, params: Map)","com.ntt.skyway.core.content.WebRTCStatsReport"]},{"name":"enum ConnectionState : Enum ","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/index.html","searchKeys":["ConnectionState","enum ConnectionState : Enum ","com.ntt.skyway.core.network.WebSocketClient.ConnectionState"]},{"name":"enum ContentType : Enum ","description":"com.ntt.skyway.core.content.Stream.ContentType","location":"core/com.ntt.skyway.core.content/-stream/-content-type/index.html","searchKeys":["ContentType","enum ContentType : Enum ","com.ntt.skyway.core.content.Stream.ContentType"]},{"name":"enum LayoutParam : Enum ","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/index.html","searchKeys":["LayoutParam","enum LayoutParam : Enum ","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam"]},{"name":"enum LogLevel : Enum ","description":"com.ntt.skyway.core.util.Logger.LogLevel","location":"core/com.ntt.skyway.core.util/-logger/-log-level/index.html","searchKeys":["LogLevel","enum LogLevel : Enum ","com.ntt.skyway.core.util.Logger.LogLevel"]},{"name":"enum MimeType : Enum ","description":"com.ntt.skyway.core.content.Codec.MimeType","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/index.html","searchKeys":["MimeType","enum MimeType : Enum ","com.ntt.skyway.core.content.Codec.MimeType"]},{"name":"enum ScalingType : Enum ","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/index.html","searchKeys":["ScalingType","enum ScalingType : Enum ","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType"]},{"name":"enum Side : Enum ","description":"com.ntt.skyway.core.channel.member.Member.Side","location":"core/com.ntt.skyway.core.channel.member/-member/-side/index.html","searchKeys":["Side","enum Side : Enum ","com.ntt.skyway.core.channel.member.Member.Side"]},{"name":"enum Side : Enum ","description":"com.ntt.skyway.core.content.Stream.Side","location":"core/com.ntt.skyway.core.content/-stream/-side/index.html","searchKeys":["Side","enum Side : Enum ","com.ntt.skyway.core.content.Stream.Side"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Channel.State","location":"core/com.ntt.skyway.core.channel/-channel/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Channel.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.member.Member.State","location":"core/com.ntt.skyway.core.channel.member/-member/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.member.Member.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Publication.State","location":"core/com.ntt.skyway.core.channel/-publication/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Publication.State"]},{"name":"enum State : Enum ","description":"com.ntt.skyway.core.channel.Subscription.State","location":"core/com.ntt.skyway.core.channel/-subscription/-state/index.html","searchKeys":["State","enum State : Enum ","com.ntt.skyway.core.channel.Subscription.State"]},{"name":"enum TurnPolicy : Enum ","description":"com.ntt.skyway.core.SkyWayContext.TurnPolicy","location":"core/com.ntt.skyway.core/-sky-way-context/-turn-policy/index.html","searchKeys":["TurnPolicy","enum TurnPolicy : Enum ","com.ntt.skyway.core.SkyWayContext.TurnPolicy"]},{"name":"enum Type : Enum ","description":"com.ntt.skyway.core.channel.member.Member.Type","location":"core/com.ntt.skyway.core.channel.member/-member/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.ntt.skyway.core.channel.member.Member.Type"]},{"name":"fun Analytics(domain: String? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.Analytics.Analytics","location":"core/com.ntt.skyway.core/-sky-way-context/-analytics/-analytics.html","searchKeys":["Analytics","fun Analytics(domain: String? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.Analytics.Analytics"]},{"name":"fun CapturingOptions(width: Int, height: Int, frameRate: Int = 30)","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.CapturingOptions","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/-capturing-options.html","searchKeys":["CapturingOptions","fun CapturingOptions(width: Int, height: Int, frameRate: Int = 30)","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.CapturingOptions"]},{"name":"fun Codec(mimeType: Codec.MimeType, parameters: Codec.Parameters = Parameters())","description":"com.ntt.skyway.core.content.Codec.Codec","location":"core/com.ntt.skyway.core.content/-codec/-codec.html","searchKeys":["Codec","fun Codec(mimeType: Codec.MimeType, parameters: Codec.Parameters = Parameters())","com.ntt.skyway.core.content.Codec.Codec"]},{"name":"fun Codec(mimeType: String, parameters: Codec.Parameters)","description":"com.ntt.skyway.core.content.Codec.Codec","location":"core/com.ntt.skyway.core.content/-codec/-codec.html","searchKeys":["Codec","fun Codec(mimeType: String, parameters: Codec.Parameters)","com.ntt.skyway.core.content.Codec.Codec"]},{"name":"fun CustomRenderer()","description":"com.ntt.skyway.core.content.sink.CustomRenderer.CustomRenderer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-custom-renderer.html","searchKeys":["CustomRenderer","fun CustomRenderer()","com.ntt.skyway.core.content.sink.CustomRenderer.CustomRenderer"]},{"name":"fun CustomVideoFrameSource(width: Int, height: Int)","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.CustomVideoFrameSource","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/-custom-video-frame-source.html","searchKeys":["CustomVideoFrameSource","fun CustomVideoFrameSource(width: Int, height: Int)","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.CustomVideoFrameSource"]},{"name":"fun DataSource()","description":"com.ntt.skyway.core.content.local.source.DataSource.DataSource","location":"core/com.ntt.skyway.core.content.local.source/-data-source/-data-source.html","searchKeys":["DataSource","fun DataSource()","com.ntt.skyway.core.content.local.source.DataSource.DataSource"]},{"name":"fun Dto(channel: Channel, id: String, name: String?, nativePointer: Long)","description":"com.ntt.skyway.core.channel.member.Member.Dto.Dto","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/-dto.html","searchKeys":["Dto","fun Dto(channel: Channel, id: String, name: String?, nativePointer: Long)","com.ntt.skyway.core.channel.member.Member.Dto.Dto"]},{"name":"fun Encoding(id: String?, maxBitrate: Int? = null, scaleResolutionDownBy: Double? = null, maxFramerate: Double? = null)","description":"com.ntt.skyway.core.content.Encoding.Encoding","location":"core/com.ntt.skyway.core.content/-encoding/-encoding.html","searchKeys":["Encoding","fun Encoding(id: String?, maxBitrate: Int? = null, scaleResolutionDownBy: Double? = null, maxFramerate: Double? = null)","com.ntt.skyway.core.content.Encoding.Encoding"]},{"name":"fun Error(message: String)","description":"com.ntt.skyway.core.SkyWayContext.Error.Error","location":"core/com.ntt.skyway.core/-sky-way-context/-error/-error.html","searchKeys":["Error","fun Error(message: String)","com.ntt.skyway.core.SkyWayContext.Error.Error"]},{"name":"fun IceParams(domain: String? = null, version: Int? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.IceParams.IceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/-ice-params.html","searchKeys":["IceParams","fun IceParams(domain: String? = null, version: Int? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.IceParams.IceParams"]},{"name":"fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = \"\")","description":"com.ntt.skyway.core.channel.member.Member.Init.Init","location":"core/com.ntt.skyway.core.channel.member/-member/-init/-init.html","searchKeys":["Init","fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30, type: Member.Type = Type.PERSON, subtype: String = \"\")","com.ntt.skyway.core.channel.member.Member.Init.Init"]},{"name":"fun LocalPerson()","description":"com.ntt.skyway.core.channel.member.LocalPerson.LocalPerson","location":"core/com.ntt.skyway.core.channel.member/-local-person/-local-person.html","searchKeys":["LocalPerson","fun LocalPerson()","com.ntt.skyway.core.channel.member.LocalPerson.LocalPerson"]},{"name":"fun LocalPersonImpl(dto: Member.Dto, repository: Repository)","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.LocalPersonImpl","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/-local-person-impl.html","searchKeys":["LocalPersonImpl","fun LocalPersonImpl(dto: Member.Dto, repository: Repository)","com.ntt.skyway.core.channel.member.LocalPersonImpl.LocalPersonImpl"]},{"name":"fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, analytics: SkyWayContext.Analytics? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)","description":"com.ntt.skyway.core.SkyWayContext.Options.Options","location":"core/com.ntt.skyway.core/-sky-way-context/-options/-options.html","searchKeys":["Options","fun Options(authToken: String, logLevel: Logger.LogLevel = Logger.LogLevel.INFO, webRTCLog: Boolean = false, enableHardwareCodec: Boolean = true, rtcApi: SkyWayContext.RtcApi? = null, iceParams: SkyWayContext.IceParams? = null, signaling: SkyWayContext.Signaling? = null, analytics: SkyWayContext.Analytics? = null, rtcConfig: SkyWayContext.RtcConfig? = null, sfu: SkyWayContext.Sfu? = null, token: SkyWayContext.Token? = null)","com.ntt.skyway.core.SkyWayContext.Options.Options"]},{"name":"fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null)","description":"com.ntt.skyway.core.channel.Publication.Options.Options","location":"core/com.ntt.skyway.core.channel/-publication/-options/-options.html","searchKeys":["Options","fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null)","com.ntt.skyway.core.channel.Publication.Options.Options"]},{"name":"fun Options(preferredEncodingId: String? = null)","description":"com.ntt.skyway.core.channel.Subscription.Options.Options","location":"core/com.ntt.skyway.core.channel/-subscription/-options/-options.html","searchKeys":["Options","fun Options(preferredEncodingId: String? = null)","com.ntt.skyway.core.channel.Subscription.Options.Options"]},{"name":"fun Parameters(useDtx: Boolean? = null)","description":"com.ntt.skyway.core.content.Codec.Parameters.Parameters","location":"core/com.ntt.skyway.core.content/-codec/-parameters/-parameters.html","searchKeys":["Parameters","fun Parameters(useDtx: Boolean? = null)","com.ntt.skyway.core.content.Codec.Parameters.Parameters"]},{"name":"fun RemoteMember()","description":"com.ntt.skyway.core.channel.member.RemoteMember.RemoteMember","location":"core/com.ntt.skyway.core.channel.member/-remote-member/-remote-member.html","searchKeys":["RemoteMember","fun RemoteMember()","com.ntt.skyway.core.channel.member.RemoteMember.RemoteMember"]},{"name":"fun RemoteMemberImpl(dto: Member.Dto)","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.RemoteMemberImpl","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/-remote-member-impl.html","searchKeys":["RemoteMemberImpl","fun RemoteMemberImpl(dto: Member.Dto)","com.ntt.skyway.core.channel.member.RemoteMemberImpl.RemoteMemberImpl"]},{"name":"fun RemotePersonPlugin()","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.RemotePersonPlugin","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/-remote-person-plugin.html","searchKeys":["RemotePersonPlugin","fun RemotePersonPlugin()","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.RemotePersonPlugin"]},{"name":"fun Repository(channel: ChannelImpl)","description":"com.ntt.skyway.core.channel.Repository.Repository","location":"core/com.ntt.skyway.core.channel/-repository/-repository.html","searchKeys":["Repository","fun Repository(channel: ChannelImpl)","com.ntt.skyway.core.channel.Repository.Repository"]},{"name":"fun RtcApi(domain: String? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.RtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/-rtc-api.html","searchKeys":["RtcApi","fun RtcApi(domain: String? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.RtcApi.RtcApi"]},{"name":"fun RtcConfig(timeout: Int? = null, policy: SkyWayContext.TurnPolicy? = null)","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.RtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/-rtc-config.html","searchKeys":["RtcConfig","fun RtcConfig(timeout: Int? = null, policy: SkyWayContext.TurnPolicy? = null)","com.ntt.skyway.core.SkyWayContext.RtcConfig.RtcConfig"]},{"name":"fun Sfu(domain: String? = null, version: Int? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.Sfu.Sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/-sfu.html","searchKeys":["Sfu","fun Sfu(domain: String? = null, version: Int? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.Sfu.Sfu"]},{"name":"fun Signaling(domain: String? = null, secure: Boolean? = null)","description":"com.ntt.skyway.core.SkyWayContext.Signaling.Signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/-signaling.html","searchKeys":["Signaling","fun Signaling(domain: String? = null, secure: Boolean? = null)","com.ntt.skyway.core.SkyWayContext.Signaling.Signaling"]},{"name":"fun SkyWayOptIn()","description":"com.ntt.skyway.core.SkyWayOptIn.SkyWayOptIn","location":"core/com.ntt.skyway.core/-sky-way-opt-in/-sky-way-opt-in.html","searchKeys":["SkyWayOptIn","fun SkyWayOptIn()","com.ntt.skyway.core.SkyWayOptIn.SkyWayOptIn"]},{"name":"fun Stream(id: String, nativePointer: Long)","description":"com.ntt.skyway.core.content.Stream.Stream","location":"core/com.ntt.skyway.core.content/-stream/-stream.html","searchKeys":["Stream","fun Stream(id: String, nativePointer: Long)","com.ntt.skyway.core.content.Stream.Stream"]},{"name":"fun SurfaceViewRenderer(context: Context)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-surface-view-renderer.html","searchKeys":["SurfaceViewRenderer","fun SurfaceViewRenderer(context: Context)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer"]},{"name":"fun SurfaceViewRenderer(context: Context, attrs: AttributeSet)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-surface-view-renderer.html","searchKeys":["SurfaceViewRenderer","fun SurfaceViewRenderer(context: Context, attrs: AttributeSet)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.SurfaceViewRenderer"]},{"name":"fun Token(tokenReminderTimeSec: Int? = null)","description":"com.ntt.skyway.core.SkyWayContext.Token.Token","location":"core/com.ntt.skyway.core/-sky-way-context/-token/-token.html","searchKeys":["Token","fun Token(tokenReminderTimeSec: Int? = null)","com.ntt.skyway.core.SkyWayContext.Token.Token"]},{"name":"fun VideoFileSource(context: Context, fileName: String)","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.VideoFileSource","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/-video-file-source.html","searchKeys":["VideoFileSource","fun VideoFileSource(context: Context, fileName: String)","com.ntt.skyway.core.content.local.source.VideoFileSource.VideoFileSource"]},{"name":"fun VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.VideoFrameBuffer","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/-video-frame-buffer.html","searchKeys":["VideoFrameBuffer","fun VideoFrameBuffer(width: Int, height: Int, dataY: ByteBuffer, dataU: ByteBuffer, dataV: ByteBuffer, strideY: Int, strideU: Int, strideV: Int)","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.VideoFrameBuffer"]},{"name":"fun VideoSource()","description":"com.ntt.skyway.core.content.local.source.VideoSource.VideoSource","location":"core/com.ntt.skyway.core.content.local.source/-video-source/-video-source.html","searchKeys":["VideoSource","fun VideoSource()","com.ntt.skyway.core.content.local.source.VideoSource.VideoSource"]},{"name":"fun WebRTCStats(reports: List)","description":"com.ntt.skyway.core.content.WebRTCStats.WebRTCStats","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/-web-r-t-c-stats.html","searchKeys":["WebRTCStats","fun WebRTCStats(reports: List)","com.ntt.skyway.core.content.WebRTCStats.WebRTCStats"]},{"name":"fun WebRTCStatsReport(id: String, type: String, params: Map)","description":"com.ntt.skyway.core.content.WebRTCStatsReport.WebRTCStatsReport","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/-web-r-t-c-stats-report.html","searchKeys":["WebRTCStatsReport","fun WebRTCStatsReport(id: String, type: String, params: Map)","com.ntt.skyway.core.content.WebRTCStatsReport.WebRTCStatsReport"]},{"name":"fun WebSocketClient()","description":"com.ntt.skyway.core.network.WebSocketClient.WebSocketClient","location":"core/com.ntt.skyway.core.network/-web-socket-client/-web-socket-client.html","searchKeys":["WebSocketClient","fun WebSocketClient()","com.ntt.skyway.core.network.WebSocketClient.WebSocketClient"]},{"name":"fun WebSocketHeader(key: String, value: String)","description":"com.ntt.skyway.core.network.WebSocketHeader.WebSocketHeader","location":"core/com.ntt.skyway.core.network/-web-socket-header/-web-socket-header.html","searchKeys":["WebSocketHeader","fun WebSocketHeader(key: String, value: String)","com.ntt.skyway.core.network.WebSocketHeader.WebSocketHeader"]},{"name":"fun _updateRtcConfig(rtcConfig: SkyWayContext.RtcConfig)","description":"com.ntt.skyway.core.SkyWayContext._updateRtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/_update-rtc-config.html","searchKeys":["_updateRtcConfig","fun _updateRtcConfig(rtcConfig: SkyWayContext.RtcConfig)","com.ntt.skyway.core.SkyWayContext._updateRtcConfig"]},{"name":"fun addRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.local.LocalVideoStream.addRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/add-renderer.html","searchKeys":["addRenderer","fun addRenderer(renderer: Renderer)","com.ntt.skyway.core.content.local.LocalVideoStream.addRenderer"]},{"name":"fun addRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.addRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/add-renderer.html","searchKeys":["addRenderer","fun addRenderer(renderer: Renderer)","com.ntt.skyway.core.content.remote.RemoteVideoStream.addRenderer"]},{"name":"fun changeCamera(deviceName: String)","description":"com.ntt.skyway.core.content.local.source.CameraSource.changeCamera","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/change-camera.html","searchKeys":["changeCamera","fun changeCamera(deviceName: String)","com.ntt.skyway.core.content.local.source.CameraSource.changeCamera"]},{"name":"fun changeCapturingSize(width: Int, height: Int)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.changeCapturingSize","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/change-capturing-size.html","searchKeys":["changeCapturingSize","fun changeCapturingSize(width: Int, height: Int)","com.ntt.skyway.core.content.local.source.ScreenSource.changeCapturingSize"]},{"name":"fun changeRecord(audioRecord: AudioRecord)","description":"com.ntt.skyway.core.content.local.source.AudioSource.changeRecord","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/change-record.html","searchKeys":["changeRecord","fun changeRecord(audioRecord: AudioRecord)","com.ntt.skyway.core.content.local.source.AudioSource.changeRecord"]},{"name":"fun changeTrack(audioTrack: AudioTrack)","description":"com.ntt.skyway.core.content.sink.AudioDestination.changeTrack","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/change-track.html","searchKeys":["changeTrack","fun changeTrack(audioTrack: AudioTrack)","com.ntt.skyway.core.content.sink.AudioDestination.changeTrack"]},{"name":"fun create(): WebSocketClient","description":"com.ntt.skyway.core.network.WebSocketClientFactory.create","location":"core/com.ntt.skyway.core.network/-web-socket-client-factory/create.html","searchKeys":["create","fun create(): WebSocketClient","com.ntt.skyway.core.network.WebSocketClientFactory.create"]},{"name":"fun createStream(): LocalAudioStream","description":"com.ntt.skyway.core.content.local.source.AudioSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalAudioStream","com.ntt.skyway.core.content.local.source.AudioSource.createStream"]},{"name":"fun createStream(): LocalDataStream","description":"com.ntt.skyway.core.content.local.source.DataSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-data-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalDataStream","com.ntt.skyway.core.content.local.source.DataSource.createStream"]},{"name":"fun createStream(): LocalVideoStream","description":"com.ntt.skyway.core.content.local.source.VideoSource.createStream","location":"core/com.ntt.skyway.core.content.local.source/-video-source/create-stream.html","searchKeys":["createStream","fun createStream(): LocalVideoStream","com.ntt.skyway.core.content.local.source.VideoSource.createStream"]},{"name":"fun dispose()","description":"com.ntt.skyway.core.SkyWayContext.dispose","location":"core/com.ntt.skyway.core/-sky-way-context/dispose.html","searchKeys":["dispose","fun dispose()","com.ntt.skyway.core.SkyWayContext.dispose"]},{"name":"fun findPlugin(name: String): Plugin?","description":"com.ntt.skyway.core.SkyWayContext.findPlugin","location":"core/com.ntt.skyway.core/-sky-way-context/find-plugin.html","searchKeys":["findPlugin","fun findPlugin(name: String): Plugin?","com.ntt.skyway.core.SkyWayContext.findPlugin"]},{"name":"fun fromJsonArray(jsonArr: JsonArray): List","description":"com.ntt.skyway.core.content.Codec.Companion.fromJsonArray","location":"core/com.ntt.skyway.core.content/-codec/-companion/from-json-array.html","searchKeys":["fromJsonArray","fun fromJsonArray(jsonArr: JsonArray): List","com.ntt.skyway.core.content.Codec.Companion.fromJsonArray"]},{"name":"fun fromJsonArray(jsonArr: JsonArray): List","description":"com.ntt.skyway.core.content.Encoding.Companion.fromJsonArray","location":"core/com.ntt.skyway.core.content/-encoding/-companion/from-json-array.html","searchKeys":["fromJsonArray","fun fromJsonArray(jsonArr: JsonArray): List","com.ntt.skyway.core.content.Encoding.Companion.fromJsonArray"]},{"name":"fun getBackCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getBackCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-back-cameras.html","searchKeys":["getBackCameras","fun getBackCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getBackCameras"]},{"name":"fun getCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-cameras.html","searchKeys":["getCameras","fun getCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getCameras"]},{"name":"fun getFrontCameras(context: Context): Set","description":"com.ntt.skyway.core.content.local.source.CameraSource.getFrontCameras","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/get-front-cameras.html","searchKeys":["getFrontCameras","fun getFrontCameras(context: Context): Set","com.ntt.skyway.core.content.local.source.CameraSource.getFrontCameras"]},{"name":"fun log(level: Int, message: String, fileName: String, methodName: String, lineNumber: Int)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Int, message: String, fileName: String, methodName: String, lineNumber: Int)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun log(level: Logger.LogLevel, message: String)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Logger.LogLevel, message: String)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun log(level: Logger.LogLevel, message: String, tag: String)","description":"com.ntt.skyway.core.util.Logger.log","location":"core/com.ntt.skyway.core.util/-logger/log.html","searchKeys":["log","fun log(level: Logger.LogLevel, message: String, tag: String)","com.ntt.skyway.core.util.Logger.log"]},{"name":"fun logD(message: String)","description":"com.ntt.skyway.core.util.Logger.logD","location":"core/com.ntt.skyway.core.util/-logger/log-d.html","searchKeys":["logD","fun logD(message: String)","com.ntt.skyway.core.util.Logger.logD"]},{"name":"fun logE(message: String)","description":"com.ntt.skyway.core.util.Logger.logE","location":"core/com.ntt.skyway.core.util/-logger/log-e.html","searchKeys":["logE","fun logE(message: String)","com.ntt.skyway.core.util.Logger.logE"]},{"name":"fun logI(message: String)","description":"com.ntt.skyway.core.util.Logger.logI","location":"core/com.ntt.skyway.core.util/-logger/log-i.html","searchKeys":["logI","fun logI(message: String)","com.ntt.skyway.core.util.Logger.logI"]},{"name":"fun logV(message: String)","description":"com.ntt.skyway.core.util.Logger.logV","location":"core/com.ntt.skyway.core.util/-logger/log-v.html","searchKeys":["logV","fun logV(message: String)","com.ntt.skyway.core.util.Logger.logV"]},{"name":"fun logW(message: String)","description":"com.ntt.skyway.core.util.Logger.logW","location":"core/com.ntt.skyway.core.util/-logger/log-w.html","searchKeys":["logW","fun logW(message: String)","com.ntt.skyway.core.util.Logger.logW"]},{"name":"fun onFatalError(message: String)","description":"com.ntt.skyway.core.SkyWayContext.onFatalError","location":"core/com.ntt.skyway.core/-sky-way-context/on-fatal-error.html","searchKeys":["onFatalError","fun onFatalError(message: String)","com.ntt.skyway.core.SkyWayContext.onFatalError"]},{"name":"fun onReconnectStart()","description":"com.ntt.skyway.core.SkyWayContext.onReconnectStart","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-start.html","searchKeys":["onReconnectStart","fun onReconnectStart()","com.ntt.skyway.core.SkyWayContext.onReconnectStart"]},{"name":"fun onReconnectSuccess()","description":"com.ntt.skyway.core.SkyWayContext.onReconnectSuccess","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-success.html","searchKeys":["onReconnectSuccess","fun onReconnectSuccess()","com.ntt.skyway.core.SkyWayContext.onReconnectSuccess"]},{"name":"fun onTokenExpired()","description":"com.ntt.skyway.core.SkyWayContext.onTokenExpired","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-expired.html","searchKeys":["onTokenExpired","fun onTokenExpired()","com.ntt.skyway.core.SkyWayContext.onTokenExpired"]},{"name":"fun onTokenRefreshingNeeded()","description":"com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeeded","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-refreshing-needed.html","searchKeys":["onTokenRefreshingNeeded","fun onTokenRefreshingNeeded()","com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeeded"]},{"name":"fun registerPlugin(plugin: Plugin)","description":"com.ntt.skyway.core.SkyWayContext.registerPlugin","location":"core/com.ntt.skyway.core/-sky-way-context/register-plugin.html","searchKeys":["registerPlugin","fun registerPlugin(plugin: Plugin)","com.ntt.skyway.core.SkyWayContext.registerPlugin"]},{"name":"fun removeAllRenderer()","description":"com.ntt.skyway.core.content.local.LocalVideoStream.removeAllRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/remove-all-renderer.html","searchKeys":["removeAllRenderer","fun removeAllRenderer()","com.ntt.skyway.core.content.local.LocalVideoStream.removeAllRenderer"]},{"name":"fun removeAllRenderer()","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.removeAllRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/remove-all-renderer.html","searchKeys":["removeAllRenderer","fun removeAllRenderer()","com.ntt.skyway.core.content.remote.RemoteVideoStream.removeAllRenderer"]},{"name":"fun removeRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.local.LocalVideoStream.removeRenderer","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/remove-renderer.html","searchKeys":["removeRenderer","fun removeRenderer(renderer: Renderer)","com.ntt.skyway.core.content.local.LocalVideoStream.removeRenderer"]},{"name":"fun removeRenderer(renderer: Renderer)","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.removeRenderer","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/remove-renderer.html","searchKeys":["removeRenderer","fun removeRenderer(renderer: Renderer)","com.ntt.skyway.core.content.remote.RemoteVideoStream.removeRenderer"]},{"name":"fun setScalingType(scalingType: SurfaceViewRenderer.ScalingType)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setScalingType","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/set-scaling-type.html","searchKeys":["setScalingType","fun setScalingType(scalingType: SurfaceViewRenderer.ScalingType)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setScalingType"]},{"name":"fun setVolume(volume: Double)","description":"com.ntt.skyway.core.content.local.LocalAudioStream.setVolume","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/set-volume.html","searchKeys":["setVolume","fun setVolume(volume: Double)","com.ntt.skyway.core.content.local.LocalAudioStream.setVolume"]},{"name":"fun setVolume(volume: Double)","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.setVolume","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/set-volume.html","searchKeys":["setVolume","fun setVolume(volume: Double)","com.ntt.skyway.core.content.remote.RemoteAudioStream.setVolume"]},{"name":"fun setup(context: Context, mediaProjectionPermissionResultData: Intent)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.setup","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/setup.html","searchKeys":["setup","fun setup(context: Context, mediaProjectionPermissionResultData: Intent)","com.ntt.skyway.core.content.local.source.ScreenSource.setup"]},{"name":"fun setup(width: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT, height: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT)","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setup","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/setup.html","searchKeys":["setup","fun setup(width: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT, height: SurfaceViewRenderer.LayoutParam = LayoutParam.WRAP_CONTENT)","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.setup"]},{"name":"fun start()","description":"com.ntt.skyway.core.content.local.source.AudioSource.start","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/start.html","searchKeys":["start","fun start()","com.ntt.skyway.core.content.local.source.AudioSource.start"]},{"name":"fun startCapturing(context: Context, deviceName: String, options: CameraSource.CapturingOptions)","description":"com.ntt.skyway.core.content.local.source.CameraSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(context: Context, deviceName: String, options: CameraSource.CapturingOptions)","com.ntt.skyway.core.content.local.source.CameraSource.startCapturing"]},{"name":"fun startCapturing(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.ScreenSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.ScreenSource.startCapturing"]},{"name":"fun startCapturing(width: Int, height: Int, frameRate: Int)","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.startCapturing","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/start-capturing.html","searchKeys":["startCapturing","fun startCapturing(width: Int, height: Int, frameRate: Int)","com.ntt.skyway.core.content.local.source.VideoFileSource.startCapturing"]},{"name":"fun stop()","description":"com.ntt.skyway.core.content.local.source.AudioSource.stop","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/stop.html","searchKeys":["stop","fun stop()","com.ntt.skyway.core.content.local.source.AudioSource.stop"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.CameraSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.CameraSource.stopCapturing"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.ScreenSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.ScreenSource.stopCapturing"]},{"name":"fun stopCapturing()","description":"com.ntt.skyway.core.content.local.source.VideoFileSource.stopCapturing","location":"core/com.ntt.skyway.core.content.local.source/-video-file-source/stop-capturing.html","searchKeys":["stopCapturing","fun stopCapturing()","com.ntt.skyway.core.content.local.source.VideoFileSource.stopCapturing"]},{"name":"fun updateAuthToken(authToken: String): Boolean","description":"com.ntt.skyway.core.SkyWayContext.updateAuthToken","location":"core/com.ntt.skyway.core/-sky-way-context/update-auth-token.html","searchKeys":["updateAuthToken","fun updateAuthToken(authToken: String): Boolean","com.ntt.skyway.core.SkyWayContext.updateAuthToken"]},{"name":"fun updateFrame(bitmap: Bitmap, rotation: Int)","description":"com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.updateFrame","location":"core/com.ntt.skyway.core.content.local.source/-custom-video-frame-source/update-frame.html","searchKeys":["updateFrame","fun updateFrame(bitmap: Bitmap, rotation: Int)","com.ntt.skyway.core.content.local.source.CustomVideoFrameSource.updateFrame"]},{"name":"fun write(data: ByteArray)","description":"com.ntt.skyway.core.content.local.LocalDataStream.write","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/write.html","searchKeys":["write","fun write(data: ByteArray)","com.ntt.skyway.core.content.local.LocalDataStream.write"]},{"name":"fun write(data: String)","description":"com.ntt.skyway.core.content.local.LocalDataStream.write","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/write.html","searchKeys":["write","fun write(data: String)","com.ntt.skyway.core.content.local.LocalDataStream.write"]},{"name":"interface Channel","description":"com.ntt.skyway.core.channel.Channel","location":"core/com.ntt.skyway.core.channel/-channel/index.html","searchKeys":["Channel","interface Channel","com.ntt.skyway.core.channel.Channel"]},{"name":"interface Member","description":"com.ntt.skyway.core.channel.member.Member","location":"core/com.ntt.skyway.core.channel.member/-member/index.html","searchKeys":["Member","interface Member","com.ntt.skyway.core.channel.member.Member"]},{"name":"interface Plugin","description":"com.ntt.skyway.plugin.Plugin","location":"core/com.ntt.skyway.plugin/-plugin/index.html","searchKeys":["Plugin","interface Plugin","com.ntt.skyway.plugin.Plugin"]},{"name":"interface Publication","description":"com.ntt.skyway.core.channel.Publication","location":"core/com.ntt.skyway.core.channel/-publication/index.html","searchKeys":["Publication","interface Publication","com.ntt.skyway.core.channel.Publication"]},{"name":"interface Renderer","description":"com.ntt.skyway.core.content.sink.Renderer","location":"core/com.ntt.skyway.core.content.sink/-renderer/index.html","searchKeys":["Renderer","interface Renderer","com.ntt.skyway.core.content.sink.Renderer"]},{"name":"interface Subscription","description":"com.ntt.skyway.core.channel.Subscription","location":"core/com.ntt.skyway.core.channel/-subscription/index.html","searchKeys":["Subscription","interface Subscription","com.ntt.skyway.core.channel.Subscription"]},{"name":"object AudioDestination","description":"com.ntt.skyway.core.content.sink.AudioDestination","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/index.html","searchKeys":["AudioDestination","object AudioDestination","com.ntt.skyway.core.content.sink.AudioDestination"]},{"name":"object AudioSource","description":"com.ntt.skyway.core.content.local.source.AudioSource","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/index.html","searchKeys":["AudioSource","object AudioSource","com.ntt.skyway.core.content.local.source.AudioSource"]},{"name":"object CameraSource : VideoSource","description":"com.ntt.skyway.core.content.local.source.CameraSource","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/index.html","searchKeys":["CameraSource","object CameraSource : VideoSource","com.ntt.skyway.core.content.local.source.CameraSource"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Channel.Companion","location":"core/com.ntt.skyway.core.channel/-channel/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Channel.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Channel.State.Companion","location":"core/com.ntt.skyway.core.channel/-channel/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Channel.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.ChannelImpl.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Publication.State.Companion","location":"core/com.ntt.skyway.core.channel/-publication/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Publication.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.Subscription.State.Companion","location":"core/com.ntt.skyway.core.channel/-subscription/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.Subscription.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.channel.member.Member.State.Companion","location":"core/com.ntt.skyway.core.channel.member/-member/-state/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.channel.member.Member.State.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Codec.Companion","location":"core/com.ntt.skyway.core.content/-codec/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Codec.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Codec.MimeType.Companion","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Codec.MimeType.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Encoding.Companion","location":"core/com.ntt.skyway.core.content/-encoding/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Encoding.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.Stream.ContentType.Companion","location":"core/com.ntt.skyway.core.content/-stream/-content-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.Stream.ContentType.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.Companion","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-scaling-type/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.ScalingType.Companion"]},{"name":"object HttpClient","description":"com.ntt.skyway.core.network.HttpClient","location":"core/com.ntt.skyway.core.network/-http-client/index.html","searchKeys":["HttpClient","object HttpClient","com.ntt.skyway.core.network.HttpClient"]},{"name":"object Logger","description":"com.ntt.skyway.core.util.Logger","location":"core/com.ntt.skyway.core.util/-logger/index.html","searchKeys":["Logger","object Logger","com.ntt.skyway.core.util.Logger"]},{"name":"object ScreenSource : VideoSource","description":"com.ntt.skyway.core.content.local.source.ScreenSource","location":"core/com.ntt.skyway.core.content.local.source/-screen-source/index.html","searchKeys":["ScreenSource","object ScreenSource : VideoSource","com.ntt.skyway.core.content.local.source.ScreenSource"]},{"name":"object SkyWayContext","description":"com.ntt.skyway.core.SkyWayContext","location":"core/com.ntt.skyway.core/-sky-way-context/index.html","searchKeys":["SkyWayContext","object SkyWayContext","com.ntt.skyway.core.SkyWayContext"]},{"name":"object UnknownPlugin : Plugin","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/index.html","searchKeys":["UnknownPlugin","object UnknownPlugin : Plugin","com.ntt.skyway.plugin.unknown.UnknownPlugin"]},{"name":"object WebSocketClientFactory","description":"com.ntt.skyway.core.network.WebSocketClientFactory","location":"core/com.ntt.skyway.core.network/-web-socket-client-factory/index.html","searchKeys":["WebSocketClientFactory","object WebSocketClientFactory","com.ntt.skyway.core.network.WebSocketClientFactory"]},{"name":"open lateinit override var sink: SurfaceViewRenderer","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.sink","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/sink.html","searchKeys":["sink","open lateinit override var sink: SurfaceViewRenderer","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.sink"]},{"name":"open override fun changePreferredEncoding(id: String)","description":"com.ntt.skyway.core.channel.SubscriptionImpl.changePreferredEncoding","location":"core/com.ntt.skyway.core.channel/-subscription-impl/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","open override fun changePreferredEncoding(id: String)","com.ntt.skyway.core.channel.SubscriptionImpl.changePreferredEncoding"]},{"name":"open override fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.createRemoteMember","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/create-remote-member.html","searchKeys":["createRemoteMember","open override fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.createRemoteMember"]},{"name":"open override fun createRemoteMember(dto: Member.Dto): RemoteMember","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin.createRemoteMember","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/create-remote-member.html","searchKeys":["createRemoteMember","open override fun createRemoteMember(dto: Member.Dto): RemoteMember","com.ntt.skyway.plugin.unknown.UnknownPlugin.createRemoteMember"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.channel.ChannelImpl.dispose","location":"core/com.ntt.skyway.core.channel/-channel-impl/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.channel.ChannelImpl.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalAudioStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalAudioStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalDataStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalDataStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.local.LocalVideoStream.dispose","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.local.LocalVideoStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteAudioStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteDataStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.dispose","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.remote.RemoteVideoStream.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.sink.CustomRenderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.sink.CustomRenderer.dispose"]},{"name":"open override fun dispose()","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.dispose","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/dispose.html","searchKeys":["dispose","open override fun dispose()","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.dispose"]},{"name":"open override fun getStats(): WebRTCStats?","description":"com.ntt.skyway.core.channel.SubscriptionImpl.getStats","location":"core/com.ntt.skyway.core.channel/-subscription-impl/get-stats.html","searchKeys":["getStats","open override fun getStats(): WebRTCStats?","com.ntt.skyway.core.channel.SubscriptionImpl.getStats"]},{"name":"open override fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.core.channel.PublicationImpl.getStats","location":"core/com.ntt.skyway.core.channel/-publication-impl/get-stats.html","searchKeys":["getStats","open override fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.core.channel.PublicationImpl.getStats"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.core.channel.PublicationImpl.hashCode","location":"core/com.ntt.skyway.core.channel/-publication-impl/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.core.channel.PublicationImpl.hashCode"]},{"name":"open override fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.replaceStream","location":"core/com.ntt.skyway.core.channel/-publication-impl/replace-stream.html","searchKeys":["replaceStream","open override fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.core.channel.PublicationImpl.replaceStream"]},{"name":"open override fun updateEncodings(encodings: List)","description":"com.ntt.skyway.core.channel.PublicationImpl.updateEncodings","location":"core/com.ntt.skyway.core.channel/-publication-impl/update-encodings.html","searchKeys":["updateEncodings","open override fun updateEncodings(encodings: List)","com.ntt.skyway.core.channel.PublicationImpl.updateEncodings"]},{"name":"open override val bots: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.bots","location":"core/com.ntt.skyway.core.channel/-channel-impl/bots.html","searchKeys":["bots","open override val bots: Set","com.ntt.skyway.core.channel.ChannelImpl.bots"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.PublicationImpl.channel","location":"core/com.ntt.skyway.core.channel/-publication-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.PublicationImpl.channel"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.SubscriptionImpl.channel","location":"core/com.ntt.skyway.core.channel/-subscription-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.SubscriptionImpl.channel"]},{"name":"open override val channel: Channel","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.channel","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/channel.html","searchKeys":["channel","open override val channel: Channel","com.ntt.skyway.core.channel.member.LocalPersonImpl.channel"]},{"name":"open override val codecCapabilities: List","description":"com.ntt.skyway.core.channel.PublicationImpl.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication-impl/codec-capabilities.html","searchKeys":["codecCapabilities","open override val codecCapabilities: List","com.ntt.skyway.core.channel.PublicationImpl.codecCapabilities"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.PublicationImpl.contentType","location":"core/com.ntt.skyway.core.channel/-publication-impl/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.channel.PublicationImpl.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.channel.SubscriptionImpl.contentType","location":"core/com.ntt.skyway.core.channel/-subscription-impl/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.channel.SubscriptionImpl.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalAudioStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalAudioStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalDataStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-data-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalDataStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.local.LocalVideoStream.contentType","location":"core/com.ntt.skyway.core.content.local/-local-video-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.local.LocalVideoStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteAudioStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-audio-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteAudioStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteDataStream.contentType"]},{"name":"open override val contentType: Stream.ContentType","description":"com.ntt.skyway.core.content.remote.RemoteVideoStream.contentType","location":"core/com.ntt.skyway.core.content.remote/-remote-video-stream/content-type.html","searchKeys":["contentType","open override val contentType: Stream.ContentType","com.ntt.skyway.core.content.remote.RemoteVideoStream.contentType"]},{"name":"open override val encodings: List","description":"com.ntt.skyway.core.channel.PublicationImpl.encodings","location":"core/com.ntt.skyway.core.channel/-publication-impl/encodings.html","searchKeys":["encodings","open override val encodings: List","com.ntt.skyway.core.channel.PublicationImpl.encodings"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.ChannelImpl.id","location":"core/com.ntt.skyway.core.channel/-channel-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.ChannelImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.PublicationImpl.id","location":"core/com.ntt.skyway.core.channel/-publication-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.PublicationImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.SubscriptionImpl.id","location":"core/com.ntt.skyway.core.channel/-subscription-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.SubscriptionImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.id","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.id"]},{"name":"open override val id: String","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.id","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/id.html","searchKeys":["id","open override val id: String","com.ntt.skyway.core.channel.member.RemoteMemberImpl.id"]},{"name":"open override val localPerson: LocalPerson?","description":"com.ntt.skyway.core.channel.ChannelImpl.localPerson","location":"core/com.ntt.skyway.core.channel/-channel-impl/local-person.html","searchKeys":["localPerson","open override val localPerson: LocalPerson?","com.ntt.skyway.core.channel.ChannelImpl.localPerson"]},{"name":"open override val members: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.members","location":"core/com.ntt.skyway.core.channel/-channel-impl/members.html","searchKeys":["members","open override val members: Set","com.ntt.skyway.core.channel.ChannelImpl.members"]},{"name":"open override val metadata: String","description":"com.ntt.skyway.core.channel.PublicationImpl.metadata","location":"core/com.ntt.skyway.core.channel/-publication-impl/metadata.html","searchKeys":["metadata","open override val metadata: String","com.ntt.skyway.core.channel.PublicationImpl.metadata"]},{"name":"open override val metadata: String?","description":"com.ntt.skyway.core.channel.ChannelImpl.metadata","location":"core/com.ntt.skyway.core.channel/-channel-impl/metadata.html","searchKeys":["metadata","open override val metadata: String?","com.ntt.skyway.core.channel.ChannelImpl.metadata"]},{"name":"open override val metadata: String?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.metadata","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/metadata.html","searchKeys":["metadata","open override val metadata: String?","com.ntt.skyway.core.channel.member.LocalPersonImpl.metadata"]},{"name":"open override val metadata: String?","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.metadata","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/metadata.html","searchKeys":["metadata","open override val metadata: String?","com.ntt.skyway.core.channel.member.RemoteMemberImpl.metadata"]},{"name":"open override val name: String","description":"com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.name","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person-plugin/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.plugin.remotePerson.RemotePersonPlugin.name"]},{"name":"open override val name: String","description":"com.ntt.skyway.plugin.unknown.UnknownPlugin.name","location":"core/com.ntt.skyway.plugin.unknown/-unknown-plugin/name.html","searchKeys":["name","open override val name: String","com.ntt.skyway.plugin.unknown.UnknownPlugin.name"]},{"name":"open override val name: String?","description":"com.ntt.skyway.core.channel.ChannelImpl.name","location":"core/com.ntt.skyway.core.channel/-channel-impl/name.html","searchKeys":["name","open override val name: String?","com.ntt.skyway.core.channel.ChannelImpl.name"]},{"name":"open override val name: String?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.name","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/name.html","searchKeys":["name","open override val name: String?","com.ntt.skyway.core.channel.member.LocalPersonImpl.name"]},{"name":"open override val name: String?","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.name","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/name.html","searchKeys":["name","open override val name: String?","com.ntt.skyway.core.channel.member.RemoteMemberImpl.name"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.PublicationImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-publication-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.PublicationImpl.nativePointer"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.SubscriptionImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-subscription-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.SubscriptionImpl.nativePointer"]},{"name":"open override val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/native-pointer.html","searchKeys":["nativePointer","open override val nativePointer: Long","com.ntt.skyway.core.channel.member.LocalPersonImpl.nativePointer"]},{"name":"open override val origin: Publication?","description":"com.ntt.skyway.core.channel.PublicationImpl.origin","location":"core/com.ntt.skyway.core.channel/-publication-impl/origin.html","searchKeys":["origin","open override val origin: Publication?","com.ntt.skyway.core.channel.PublicationImpl.origin"]},{"name":"open override val preferredEncodingId: String","description":"com.ntt.skyway.core.channel.SubscriptionImpl.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription-impl/preferred-encoding-id.html","searchKeys":["preferredEncodingId","open override val preferredEncodingId: String","com.ntt.skyway.core.channel.SubscriptionImpl.preferredEncodingId"]},{"name":"open override val publication: Publication","description":"com.ntt.skyway.core.channel.SubscriptionImpl.publication","location":"core/com.ntt.skyway.core.channel/-subscription-impl/publication.html","searchKeys":["publication","open override val publication: Publication","com.ntt.skyway.core.channel.SubscriptionImpl.publication"]},{"name":"open override val publications: List","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.publications","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/publications.html","searchKeys":["publications","open override val publications: List","com.ntt.skyway.core.channel.member.LocalPersonImpl.publications"]},{"name":"open override val publications: List","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.publications","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/publications.html","searchKeys":["publications","open override val publications: List","com.ntt.skyway.core.channel.member.RemoteMemberImpl.publications"]},{"name":"open override val publications: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.publications","location":"core/com.ntt.skyway.core.channel/-channel-impl/publications.html","searchKeys":["publications","open override val publications: Set","com.ntt.skyway.core.channel.ChannelImpl.publications"]},{"name":"open override val publisher: Member","description":"com.ntt.skyway.core.channel.PublicationImpl.publisher","location":"core/com.ntt.skyway.core.channel/-publication-impl/publisher.html","searchKeys":["publisher","open override val publisher: Member","com.ntt.skyway.core.channel.PublicationImpl.publisher"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.LocalPerson.side","location":"core/com.ntt.skyway.core.channel.member/-local-person/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.LocalPerson.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.side","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.LocalPersonImpl.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.RemoteMember.side","location":"core/com.ntt.skyway.core.channel.member/-remote-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.RemoteMember.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.side","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.core.channel.member.RemoteMemberImpl.side"]},{"name":"open override val side: Stream.Side","description":"com.ntt.skyway.core.content.local.LocalStream.side","location":"core/com.ntt.skyway.core.content.local/-local-stream/side.html","searchKeys":["side","open override val side: Stream.Side","com.ntt.skyway.core.content.local.LocalStream.side"]},{"name":"open override val side: Stream.Side","description":"com.ntt.skyway.core.content.remote.RemoteStream.side","location":"core/com.ntt.skyway.core.content.remote/-remote-stream/side.html","searchKeys":["side","open override val side: Stream.Side","com.ntt.skyway.core.content.remote.RemoteStream.side"]},{"name":"open override val sink: VideoSink","description":"com.ntt.skyway.core.content.sink.CustomRenderer.sink","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/sink.html","searchKeys":["sink","open override val sink: VideoSink","com.ntt.skyway.core.content.sink.CustomRenderer.sink"]},{"name":"open override val state: Channel.State","description":"com.ntt.skyway.core.channel.ChannelImpl.state","location":"core/com.ntt.skyway.core.channel/-channel-impl/state.html","searchKeys":["state","open override val state: Channel.State","com.ntt.skyway.core.channel.ChannelImpl.state"]},{"name":"open override val state: Member.State","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.state","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/state.html","searchKeys":["state","open override val state: Member.State","com.ntt.skyway.core.channel.member.LocalPersonImpl.state"]},{"name":"open override val state: Member.State","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.state","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/state.html","searchKeys":["state","open override val state: Member.State","com.ntt.skyway.core.channel.member.RemoteMemberImpl.state"]},{"name":"open override val state: Publication.State","description":"com.ntt.skyway.core.channel.PublicationImpl.state","location":"core/com.ntt.skyway.core.channel/-publication-impl/state.html","searchKeys":["state","open override val state: Publication.State","com.ntt.skyway.core.channel.PublicationImpl.state"]},{"name":"open override val state: Subscription.State","description":"com.ntt.skyway.core.channel.SubscriptionImpl.state","location":"core/com.ntt.skyway.core.channel/-subscription-impl/state.html","searchKeys":["state","open override val state: Subscription.State","com.ntt.skyway.core.channel.SubscriptionImpl.state"]},{"name":"open override val stream: LocalStream?","description":"com.ntt.skyway.core.channel.PublicationImpl.stream","location":"core/com.ntt.skyway.core.channel/-publication-impl/stream.html","searchKeys":["stream","open override val stream: LocalStream?","com.ntt.skyway.core.channel.PublicationImpl.stream"]},{"name":"open override val stream: RemoteStream?","description":"com.ntt.skyway.core.channel.SubscriptionImpl.stream","location":"core/com.ntt.skyway.core.channel/-subscription-impl/stream.html","searchKeys":["stream","open override val stream: RemoteStream?","com.ntt.skyway.core.channel.SubscriptionImpl.stream"]},{"name":"open override val subType: String","description":"com.ntt.skyway.core.channel.member.LocalPerson.subType","location":"core/com.ntt.skyway.core.channel.member/-local-person/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.core.channel.member.LocalPerson.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subType","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.core.channel.member.LocalPersonImpl.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.subType","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.plugin.remotePerson.RemotePerson.subType"]},{"name":"open override val subType: String","description":"com.ntt.skyway.plugin.unknown.Unknown.subType","location":"core/com.ntt.skyway.plugin.unknown/-unknown/sub-type.html","searchKeys":["subType","open override val subType: String","com.ntt.skyway.plugin.unknown.Unknown.subType"]},{"name":"open override val subscriber: Member","description":"com.ntt.skyway.core.channel.SubscriptionImpl.subscriber","location":"core/com.ntt.skyway.core.channel/-subscription-impl/subscriber.html","searchKeys":["subscriber","open override val subscriber: Member","com.ntt.skyway.core.channel.SubscriptionImpl.subscriber"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.PublicationImpl.subscriptions","location":"core/com.ntt.skyway.core.channel/-publication-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.PublicationImpl.subscriptions"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscriptions"]},{"name":"open override val subscriptions: List","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.subscriptions","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: List","com.ntt.skyway.core.channel.member.RemoteMemberImpl.subscriptions"]},{"name":"open override val subscriptions: Set","description":"com.ntt.skyway.core.channel.ChannelImpl.subscriptions","location":"core/com.ntt.skyway.core.channel/-channel-impl/subscriptions.html","searchKeys":["subscriptions","open override val subscriptions: Set","com.ntt.skyway.core.channel.ChannelImpl.subscriptions"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.core.channel.member.LocalPerson.type","location":"core/com.ntt.skyway.core.channel.member/-local-person/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.core.channel.member.LocalPerson.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.type","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.core.channel.member.LocalPersonImpl.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.type","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.plugin.remotePerson.RemotePerson.type"]},{"name":"open override val type: Member.Type","description":"com.ntt.skyway.plugin.unknown.Unknown.type","location":"core/com.ntt.skyway.plugin.unknown/-unknown/type.html","searchKeys":["type","open override val type: Member.Type","com.ntt.skyway.plugin.unknown.Unknown.type"]},{"name":"open override var isSetup: Boolean = false","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/is-setup.html","searchKeys":["isSetup","open override var isSetup: Boolean = false","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.isSetup"]},{"name":"open override var isSetup: Boolean = true","description":"com.ntt.skyway.core.content.sink.CustomRenderer.isSetup","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/is-setup.html","searchKeys":["isSetup","open override var isSetup: Boolean = true","com.ntt.skyway.core.content.sink.CustomRenderer.isSetup"]},{"name":"open override var onCanceledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.SubscriptionImpl.onCanceledHandler","location":"core/com.ntt.skyway.core.channel/-subscription-impl/on-canceled-handler.html","searchKeys":["onCanceledHandler","open override var onCanceledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.SubscriptionImpl.onCanceledHandler"]},{"name":"open override var onClosedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onClosedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-closed-handler.html","searchKeys":["onClosedHandler","open override var onClosedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onClosedHandler"]},{"name":"open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onConnectionStateChangedHandler"]},{"name":"open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.SubscriptionImpl.onConnectionStateChangedHandler","location":"core/com.ntt.skyway.core.channel/-subscription-impl/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","open override var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.core.channel.SubscriptionImpl.onConnectionStateChangedHandler"]},{"name":"open override var onDisabledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onDisabledHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-disabled-handler.html","searchKeys":["onDisabledHandler","open override var onDisabledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onDisabledHandler"]},{"name":"open override var onEnabledHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onEnabledHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-enabled-handler.html","searchKeys":["onEnabledHandler","open override var onEnabledHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onEnabledHandler"]},{"name":"open override var onErrorHandler: (Exception) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onErrorHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-error-handler.html","searchKeys":["onErrorHandler","open override var onErrorHandler: (Exception) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onErrorHandler"]},{"name":"open override var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-left-handler.html","searchKeys":["onLeftHandler","open override var onLeftHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onLeftHandler"]},{"name":"open override var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onLeftHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-left-handler.html","searchKeys":["onLeftHandler","open override var onLeftHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onLeftHandler"]},{"name":"open override var onMemberJoinedHandler: (member: Member) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberJoinedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","open override var onMemberJoinedHandler: (member: Member) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberJoinedHandler"]},{"name":"open override var onMemberLeftHandler: (member: Member) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberLeftHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","open override var onMemberLeftHandler: (member: Member) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberLeftHandler"]},{"name":"open override var onMemberListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","open override var onMemberListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberListChangedHandler"]},{"name":"open override var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMemberMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","open override var onMemberMetadataUpdatedHandler: (member: Member, metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMemberMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onMetadataUpdatedHandler"]},{"name":"open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","open override var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onMetadataUpdatedHandler"]},{"name":"open override var onPublicationDisabledHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationDisabledHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","open override var onPublicationDisabledHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationDisabledHandler"]},{"name":"open override var onPublicationEnabledHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationEnabledHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","open override var onPublicationEnabledHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationEnabledHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onPublicationListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","open override var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onPublicationListChangedHandler"]},{"name":"open override var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationMetadataUpdatedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","open override var onPublicationMetadataUpdatedHandler: (publication: Publication, metadata: String) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationMetadataUpdatedHandler"]},{"name":"open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationSubscribedHandler"]},{"name":"open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationSubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","open override var onPublicationSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationSubscribedHandler"]},{"name":"open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onPublicationUnsubscribedHandler"]},{"name":"open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","open override var onPublicationUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onPublicationUnsubscribedHandler"]},{"name":"open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onStreamPublishedHandler"]},{"name":"open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamPublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","open override var onStreamPublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamPublishedHandler"]},{"name":"open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onStreamUnpublishedHandler"]},{"name":"open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamUnpublishedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","open override var onStreamUnpublishedHandler: (publication: Publication) -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onStreamUnpublishedHandler"]},{"name":"open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onSubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","open override var onSubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onSubscribedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.ChannelImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-channel-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.ChannelImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.LocalPersonImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.onSubscriptionListChangedHandler","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","open override var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.member.RemoteMemberImpl.onSubscriptionListChangedHandler"]},{"name":"open override var onUnpublishedHandler: () -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onUnpublishedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","open override var onUnpublishedHandler: () -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onUnpublishedHandler"]},{"name":"open override var onUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","description":"com.ntt.skyway.core.channel.PublicationImpl.onUnsubscribedHandler","location":"core/com.ntt.skyway.core.channel/-publication-impl/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","open override var onUnsubscribedHandler: (subscription: Subscription) -> Unit? = null","com.ntt.skyway.core.channel.PublicationImpl.onUnsubscribedHandler"]},{"name":"open suspend override fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.cancel","location":"core/com.ntt.skyway.core.channel/-publication-impl/cancel.html","searchKeys":["cancel","open suspend override fun cancel(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.cancel"]},{"name":"open suspend override fun cancel(): Boolean","description":"com.ntt.skyway.core.channel.SubscriptionImpl.cancel","location":"core/com.ntt.skyway.core.channel/-subscription-impl/cancel.html","searchKeys":["cancel","open suspend override fun cancel(): Boolean","com.ntt.skyway.core.channel.SubscriptionImpl.cancel"]},{"name":"open suspend override fun close(): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.close","location":"core/com.ntt.skyway.core.channel/-channel-impl/close.html","searchKeys":["close","open suspend override fun close(): Boolean","com.ntt.skyway.core.channel.ChannelImpl.close"]},{"name":"open suspend override fun disable(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.disable","location":"core/com.ntt.skyway.core.channel/-publication-impl/disable.html","searchKeys":["disable","open suspend override fun disable(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.disable"]},{"name":"open suspend override fun enable(): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.enable","location":"core/com.ntt.skyway.core.channel/-publication-impl/enable.html","searchKeys":["enable","open suspend override fun enable(): Boolean","com.ntt.skyway.core.channel.PublicationImpl.enable"]},{"name":"open suspend override fun join(memberInit: Member.Init): LocalPerson?","description":"com.ntt.skyway.core.channel.ChannelImpl.join","location":"core/com.ntt.skyway.core.channel/-channel-impl/join.html","searchKeys":["join","open suspend override fun join(memberInit: Member.Init): LocalPerson?","com.ntt.skyway.core.channel.ChannelImpl.join"]},{"name":"open suspend override fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.leave","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/leave.html","searchKeys":["leave","open suspend override fun leave(): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.leave"]},{"name":"open suspend override fun leave(): Boolean","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.leave","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/leave.html","searchKeys":["leave","open suspend override fun leave(): Boolean","com.ntt.skyway.core.channel.member.RemoteMemberImpl.leave"]},{"name":"open suspend override fun leave(member: Member): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.leave","location":"core/com.ntt.skyway.core.channel/-channel-impl/leave.html","searchKeys":["leave","open suspend override fun leave(member: Member): Boolean","com.ntt.skyway.core.channel.ChannelImpl.leave"]},{"name":"open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.publish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/publish.html","searchKeys":["publish","open suspend override fun publish(localStream: LocalStream, options: Publication.Options?): Publication?","com.ntt.skyway.core.channel.member.LocalPersonImpl.publish"]},{"name":"open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html","searchKeys":["subscribe","open suspend override fun subscribe(publication: Publication, options: Subscription.Options?): Subscription?","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe"]},{"name":"open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/subscribe.html","searchKeys":["subscribe","open suspend override fun subscribe(publicationId: String, options: Subscription.Options?): Subscription?","com.ntt.skyway.core.channel.member.LocalPersonImpl.subscribe"]},{"name":"open suspend override fun unpublish(publication: Publication): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publication: Publication): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish"]},{"name":"open suspend override fun unpublish(publicationId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publicationId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unpublish"]},{"name":"open suspend override fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unsubscribe.html","searchKeys":["unsubscribe","open suspend override fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe"]},{"name":"open suspend override fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/unsubscribe.html","searchKeys":["unsubscribe","open suspend override fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.unsubscribe"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.ChannelImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel/-channel-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.ChannelImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.PublicationImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel/-publication-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.PublicationImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.LocalPersonImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-local-person-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.LocalPersonImpl.updateMetadata"]},{"name":"open suspend override fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.updateMetadata","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/update-metadata.html","searchKeys":["updateMetadata","open suspend override fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.core.channel.member.RemoteMemberImpl.updateMetadata"]},{"name":"override val channel: Channel","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.channel","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/channel.html","searchKeys":["channel","override val channel: Channel","com.ntt.skyway.core.channel.member.RemoteMemberImpl.channel"]},{"name":"override val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.RemoteMemberImpl.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-remote-member-impl/native-pointer.html","searchKeys":["nativePointer","override val nativePointer: Long","com.ntt.skyway.core.channel.member.RemoteMemberImpl.nativePointer"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.create","location":"core/com.ntt.skyway.core.channel/-channel/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.create"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.create","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.create"]},{"name":"suspend fun find(name: String? = null, id: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.find","location":"core/com.ntt.skyway.core.channel/-channel/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.find"]},{"name":"suspend fun find(name: String? = null, id: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.find","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.find"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.Channel.Companion.findOrCreate","location":"core/com.ntt.skyway.core.channel/-channel/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.Channel.Companion.findOrCreate"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","description":"com.ntt.skyway.core.channel.ChannelImpl.Companion.findOrCreate","location":"core/com.ntt.skyway.core.channel/-channel-impl/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): Channel?","com.ntt.skyway.core.channel.ChannelImpl.Companion.findOrCreate"]},{"name":"suspend fun setup(context: Context, option: SkyWayContext.Options, onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null): Boolean","description":"com.ntt.skyway.core.SkyWayContext.setup","location":"core/com.ntt.skyway.core/-sky-way-context/setup.html","searchKeys":["setup","suspend fun setup(context: Context, option: SkyWayContext.Options, onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null): Boolean","com.ntt.skyway.core.SkyWayContext.setup"]},{"name":"suspend fun subscribe(publicationId: String): Subscription?","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.subscribe","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String): Subscription?","com.ntt.skyway.plugin.remotePerson.RemotePerson.subscribe"]},{"name":"suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.plugin.remotePerson.RemotePerson.unsubscribe","location":"core/com.ntt.skyway.plugin.remotePerson/-remote-person/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.plugin.remotePerson.RemotePerson.unsubscribe"]},{"name":"val analytics: SkyWayContext.Analytics? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.analytics","location":"core/com.ntt.skyway.core/-sky-way-context/-options/analytics.html","searchKeys":["analytics","val analytics: SkyWayContext.Analytics? = null","com.ntt.skyway.core.SkyWayContext.Options.analytics"]},{"name":"val audioRecord: Nothing?","description":"com.ntt.skyway.core.content.local.source.AudioSource.audioRecord","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/audio-record.html","searchKeys":["audioRecord","val audioRecord: Nothing?","com.ntt.skyway.core.content.local.source.AudioSource.audioRecord"]},{"name":"val audioTrack: Nothing?","description":"com.ntt.skyway.core.content.sink.AudioDestination.audioTrack","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/audio-track.html","searchKeys":["audioTrack","val audioTrack: Nothing?","com.ntt.skyway.core.content.sink.AudioDestination.audioTrack"]},{"name":"val authToken: String","description":"com.ntt.skyway.core.SkyWayContext.Options.authToken","location":"core/com.ntt.skyway.core/-sky-way-context/-options/auth-token.html","searchKeys":["authToken","val authToken: String","com.ntt.skyway.core.SkyWayContext.Options.authToken"]},{"name":"val availableMembers: Set","description":"com.ntt.skyway.core.channel.Repository.availableMembers","location":"core/com.ntt.skyway.core.channel/-repository/available-members.html","searchKeys":["availableMembers","val availableMembers: Set","com.ntt.skyway.core.channel.Repository.availableMembers"]},{"name":"val availablePublications: Set","description":"com.ntt.skyway.core.channel.Repository.availablePublications","location":"core/com.ntt.skyway.core.channel/-repository/available-publications.html","searchKeys":["availablePublications","val availablePublications: Set","com.ntt.skyway.core.channel.Repository.availablePublications"]},{"name":"val availableSubscriptions: Set","description":"com.ntt.skyway.core.channel.Repository.availableSubscriptions","location":"core/com.ntt.skyway.core.channel/-repository/available-subscriptions.html","searchKeys":["availableSubscriptions","val availableSubscriptions: Set","com.ntt.skyway.core.channel.Repository.availableSubscriptions"]},{"name":"val channel: Channel","description":"com.ntt.skyway.core.channel.member.Member.Dto.channel","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/channel.html","searchKeys":["channel","val channel: Channel","com.ntt.skyway.core.channel.member.Member.Dto.channel"]},{"name":"val codecCapabilities: List? = null","description":"com.ntt.skyway.core.channel.Publication.Options.codecCapabilities","location":"core/com.ntt.skyway.core.channel/-publication/-options/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List? = null","com.ntt.skyway.core.channel.Publication.Options.codecCapabilities"]},{"name":"val dataU: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataU","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-u.html","searchKeys":["dataU","val dataU: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataU"]},{"name":"val dataV: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataV","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-v.html","searchKeys":["dataV","val dataV: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataV"]},{"name":"val dataY: ByteBuffer","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataY","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/data-y.html","searchKeys":["dataY","val dataY: ByteBuffer","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.dataY"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.Analytics.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-analytics/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.Analytics.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.IceParams.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.RtcApi.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.Sfu.domain"]},{"name":"val domain: String? = null","description":"com.ntt.skyway.core.SkyWayContext.Signaling.domain","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/domain.html","searchKeys":["domain","val domain: String? = null","com.ntt.skyway.core.SkyWayContext.Signaling.domain"]},{"name":"val enableHardwareCodec: Boolean = true","description":"com.ntt.skyway.core.SkyWayContext.Options.enableHardwareCodec","location":"core/com.ntt.skyway.core/-sky-way-context/-options/enable-hardware-codec.html","searchKeys":["enableHardwareCodec","val enableHardwareCodec: Boolean = true","com.ntt.skyway.core.SkyWayContext.Options.enableHardwareCodec"]},{"name":"val encodings: List? = null","description":"com.ntt.skyway.core.channel.Publication.Options.encodings","location":"core/com.ntt.skyway.core.channel/-publication/-options/encodings.html","searchKeys":["encodings","val encodings: List? = null","com.ntt.skyway.core.channel.Publication.Options.encodings"]},{"name":"val frameRate: Int = 30","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.frameRate","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/frame-rate.html","searchKeys":["frameRate","val frameRate: Int = 30","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.frameRate"]},{"name":"val height: Int","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.height","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/height.html","searchKeys":["height","val height: Int","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.height"]},{"name":"val height: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.height","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/height.html","searchKeys":["height","val height: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.height"]},{"name":"val iceParams: SkyWayContext.IceParams? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.iceParams","location":"core/com.ntt.skyway.core/-sky-way-context/-options/ice-params.html","searchKeys":["iceParams","val iceParams: SkyWayContext.IceParams? = null","com.ntt.skyway.core.SkyWayContext.Options.iceParams"]},{"name":"val id: String","description":"com.ntt.skyway.core.channel.member.Member.Dto.id","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.channel.member.Member.Dto.id"]},{"name":"val id: String","description":"com.ntt.skyway.core.content.Stream.id","location":"core/com.ntt.skyway.core.content/-stream/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.content.Stream.id"]},{"name":"val id: String","description":"com.ntt.skyway.core.content.WebRTCStatsReport.id","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/id.html","searchKeys":["id","val id: String","com.ntt.skyway.core.content.WebRTCStatsReport.id"]},{"name":"val id: String?","description":"com.ntt.skyway.core.content.Encoding.id","location":"core/com.ntt.skyway.core.content/-encoding/id.html","searchKeys":["id","val id: String?","com.ntt.skyway.core.content.Encoding.id"]},{"name":"val isEnabled: Boolean? = null","description":"com.ntt.skyway.core.channel.Publication.Options.isEnabled","location":"core/com.ntt.skyway.core.channel/-publication/-options/is-enabled.html","searchKeys":["isEnabled","val isEnabled: Boolean? = null","com.ntt.skyway.core.channel.Publication.Options.isEnabled"]},{"name":"val isStarted: Boolean","description":"com.ntt.skyway.core.content.local.source.AudioSource.isStarted","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/is-started.html","searchKeys":["isStarted","val isStarted: Boolean","com.ntt.skyway.core.content.local.source.AudioSource.isStarted"]},{"name":"val keepAliveIntervalSec: Int = 30","description":"com.ntt.skyway.core.channel.member.Member.Init.keepAliveIntervalSec","location":"core/com.ntt.skyway.core.channel.member/-member/-init/keep-alive-interval-sec.html","searchKeys":["keepAliveIntervalSec","val keepAliveIntervalSec: Int = 30","com.ntt.skyway.core.channel.member.Member.Init.keepAliveIntervalSec"]},{"name":"val key: String","description":"com.ntt.skyway.core.network.WebSocketHeader.key","location":"core/com.ntt.skyway.core.network/-web-socket-header/key.html","searchKeys":["key","val key: String","com.ntt.skyway.core.network.WebSocketHeader.key"]},{"name":"val literal: String","description":"com.ntt.skyway.core.content.Codec.MimeType.literal","location":"core/com.ntt.skyway.core.content/-codec/-mime-type/literal.html","searchKeys":["literal","val literal: String","com.ntt.skyway.core.content.Codec.MimeType.literal"]},{"name":"val logLevel: Logger.LogLevel","description":"com.ntt.skyway.core.SkyWayContext.Options.logLevel","location":"core/com.ntt.skyway.core/-sky-way-context/-options/log-level.html","searchKeys":["logLevel","val logLevel: Logger.LogLevel","com.ntt.skyway.core.SkyWayContext.Options.logLevel"]},{"name":"val maxBitrate: Int? = null","description":"com.ntt.skyway.core.content.Encoding.maxBitrate","location":"core/com.ntt.skyway.core.content/-encoding/max-bitrate.html","searchKeys":["maxBitrate","val maxBitrate: Int? = null","com.ntt.skyway.core.content.Encoding.maxBitrate"]},{"name":"val maxFramerate: Double? = null","description":"com.ntt.skyway.core.content.Encoding.maxFramerate","location":"core/com.ntt.skyway.core.content/-encoding/max-framerate.html","searchKeys":["maxFramerate","val maxFramerate: Double? = null","com.ntt.skyway.core.content.Encoding.maxFramerate"]},{"name":"val members: Set","description":"com.ntt.skyway.core.channel.Repository.members","location":"core/com.ntt.skyway.core.channel/-repository/members.html","searchKeys":["members","val members: Set","com.ntt.skyway.core.channel.Repository.members"]},{"name":"val message: String","description":"com.ntt.skyway.core.SkyWayContext.Error.message","location":"core/com.ntt.skyway.core/-sky-way-context/-error/message.html","searchKeys":["message","val message: String","com.ntt.skyway.core.SkyWayContext.Error.message"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.core.channel.Publication.Options.metadata","location":"core/com.ntt.skyway.core.channel/-publication/-options/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.core.channel.Publication.Options.metadata"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.core.channel.member.Member.Init.metadata","location":"core/com.ntt.skyway.core.channel.member/-member/-init/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.core.channel.member.Member.Init.metadata"]},{"name":"val mimeType: String","description":"com.ntt.skyway.core.content.Codec.mimeType","location":"core/com.ntt.skyway.core.content/-codec/mime-type.html","searchKeys":["mimeType","val mimeType: String","com.ntt.skyway.core.content.Codec.mimeType"]},{"name":"val name: String?","description":"com.ntt.skyway.core.channel.member.Member.Dto.name","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/name.html","searchKeys":["name","val name: String?","com.ntt.skyway.core.channel.member.Member.Dto.name"]},{"name":"val name: String? = null","description":"com.ntt.skyway.core.channel.member.Member.Init.name","location":"core/com.ntt.skyway.core.channel.member/-member/-init/name.html","searchKeys":["name","val name: String? = null","com.ntt.skyway.core.channel.member.Member.Init.name"]},{"name":"val nativePointer: Long","description":"com.ntt.skyway.core.channel.ChannelImpl.nativePointer","location":"core/com.ntt.skyway.core.channel/-channel-impl/native-pointer.html","searchKeys":["nativePointer","val nativePointer: Long","com.ntt.skyway.core.channel.ChannelImpl.nativePointer"]},{"name":"val nativePointer: Long","description":"com.ntt.skyway.core.channel.member.Member.Dto.nativePointer","location":"core/com.ntt.skyway.core.channel.member/-member/-dto/native-pointer.html","searchKeys":["nativePointer","val nativePointer: Long","com.ntt.skyway.core.channel.member.Member.Dto.nativePointer"]},{"name":"val parameters: Codec.Parameters","description":"com.ntt.skyway.core.content.Codec.parameters","location":"core/com.ntt.skyway.core.content/-codec/parameters.html","searchKeys":["parameters","val parameters: Codec.Parameters","com.ntt.skyway.core.content.Codec.parameters"]},{"name":"val params: Map","description":"com.ntt.skyway.core.content.WebRTCStatsReport.params","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/params.html","searchKeys":["params","val params: Map","com.ntt.skyway.core.content.WebRTCStatsReport.params"]},{"name":"val plugins: MutableList","description":"com.ntt.skyway.core.SkyWayContext.plugins","location":"core/com.ntt.skyway.core/-sky-way-context/plugins.html","searchKeys":["plugins","val plugins: MutableList","com.ntt.skyway.core.SkyWayContext.plugins"]},{"name":"val policy: SkyWayContext.TurnPolicy? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.policy","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/policy.html","searchKeys":["policy","val policy: SkyWayContext.TurnPolicy? = null","com.ntt.skyway.core.SkyWayContext.RtcConfig.policy"]},{"name":"val preferredEncodingId: String? = null","description":"com.ntt.skyway.core.channel.Subscription.Options.preferredEncodingId","location":"core/com.ntt.skyway.core.channel/-subscription/-options/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String? = null","com.ntt.skyway.core.channel.Subscription.Options.preferredEncodingId"]},{"name":"val publications: List","description":"com.ntt.skyway.core.channel.Repository.publications","location":"core/com.ntt.skyway.core.channel/-repository/publications.html","searchKeys":["publications","val publications: List","com.ntt.skyway.core.channel.Repository.publications"]},{"name":"val reports: List","description":"com.ntt.skyway.core.content.WebRTCStats.reports","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats/reports.html","searchKeys":["reports","val reports: List","com.ntt.skyway.core.content.WebRTCStats.reports"]},{"name":"val repository: Repository","description":"com.ntt.skyway.core.channel.ChannelImpl.repository","location":"core/com.ntt.skyway.core.channel/-channel-impl/repository.html","searchKeys":["repository","val repository: Repository","com.ntt.skyway.core.channel.ChannelImpl.repository"]},{"name":"val rtcApi: SkyWayContext.RtcApi? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.rtcApi","location":"core/com.ntt.skyway.core/-sky-way-context/-options/rtc-api.html","searchKeys":["rtcApi","val rtcApi: SkyWayContext.RtcApi? = null","com.ntt.skyway.core.SkyWayContext.Options.rtcApi"]},{"name":"val rtcConfig: SkyWayContext.RtcConfig? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.rtcConfig","location":"core/com.ntt.skyway.core/-sky-way-context/-options/rtc-config.html","searchKeys":["rtcConfig","val rtcConfig: SkyWayContext.RtcConfig? = null","com.ntt.skyway.core.SkyWayContext.Options.rtcConfig"]},{"name":"val scaleResolutionDownBy: Double? = null","description":"com.ntt.skyway.core.content.Encoding.scaleResolutionDownBy","location":"core/com.ntt.skyway.core.content/-encoding/scale-resolution-down-by.html","searchKeys":["scaleResolutionDownBy","val scaleResolutionDownBy: Double? = null","com.ntt.skyway.core.content.Encoding.scaleResolutionDownBy"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.Analytics.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-analytics/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.Analytics.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.IceParams.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcApi.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-api/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.RtcApi.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.Sfu.secure"]},{"name":"val secure: Boolean? = null","description":"com.ntt.skyway.core.SkyWayContext.Signaling.secure","location":"core/com.ntt.skyway.core/-sky-way-context/-signaling/secure.html","searchKeys":["secure","val secure: Boolean? = null","com.ntt.skyway.core.SkyWayContext.Signaling.secure"]},{"name":"val sfu: SkyWayContext.Sfu? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.sfu","location":"core/com.ntt.skyway.core/-sky-way-context/-options/sfu.html","searchKeys":["sfu","val sfu: SkyWayContext.Sfu? = null","com.ntt.skyway.core.SkyWayContext.Options.sfu"]},{"name":"val signaling: SkyWayContext.Signaling? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.signaling","location":"core/com.ntt.skyway.core/-sky-way-context/-options/signaling.html","searchKeys":["signaling","val signaling: SkyWayContext.Signaling? = null","com.ntt.skyway.core.SkyWayContext.Options.signaling"]},{"name":"val strideU: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideU","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-u.html","searchKeys":["strideU","val strideU: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideU"]},{"name":"val strideV: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideV","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-v.html","searchKeys":["strideV","val strideV: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideV"]},{"name":"val strideY: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideY","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/stride-y.html","searchKeys":["strideY","val strideY: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.strideY"]},{"name":"val string: String","description":"com.ntt.skyway.core.network.WebSocketClient.ConnectionState.string","location":"core/com.ntt.skyway.core.network/-web-socket-client/-connection-state/string.html","searchKeys":["string","val string: String","com.ntt.skyway.core.network.WebSocketClient.ConnectionState.string"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.core.channel.Repository.subscriptions","location":"core/com.ntt.skyway.core.channel/-repository/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.core.channel.Repository.subscriptions"]},{"name":"val subtype: String","description":"com.ntt.skyway.core.channel.member.Member.Init.subtype","location":"core/com.ntt.skyway.core.channel.member/-member/-init/subtype.html","searchKeys":["subtype","val subtype: String","com.ntt.skyway.core.channel.member.Member.Init.subtype"]},{"name":"val timeout: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.RtcConfig.timeout","location":"core/com.ntt.skyway.core/-sky-way-context/-rtc-config/timeout.html","searchKeys":["timeout","val timeout: Int? = null","com.ntt.skyway.core.SkyWayContext.RtcConfig.timeout"]},{"name":"val token: SkyWayContext.Token? = null","description":"com.ntt.skyway.core.SkyWayContext.Options.token","location":"core/com.ntt.skyway.core/-sky-way-context/-options/token.html","searchKeys":["token","val token: SkyWayContext.Token? = null","com.ntt.skyway.core.SkyWayContext.Options.token"]},{"name":"val tokenReminderTimeSec: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.Token.tokenReminderTimeSec","location":"core/com.ntt.skyway.core/-sky-way-context/-token/token-reminder-time-sec.html","searchKeys":["tokenReminderTimeSec","val tokenReminderTimeSec: Int? = null","com.ntt.skyway.core.SkyWayContext.Token.tokenReminderTimeSec"]},{"name":"val track: AudioTrack","description":"com.ntt.skyway.core.content.local.LocalAudioStream.track","location":"core/com.ntt.skyway.core.content.local/-local-audio-stream/track.html","searchKeys":["track","val track: AudioTrack","com.ntt.skyway.core.content.local.LocalAudioStream.track"]},{"name":"val type: Member.Type","description":"com.ntt.skyway.core.channel.member.Member.Init.type","location":"core/com.ntt.skyway.core.channel.member/-member/-init/type.html","searchKeys":["type","val type: Member.Type","com.ntt.skyway.core.channel.member.Member.Init.type"]},{"name":"val type: String","description":"com.ntt.skyway.core.content.WebRTCStatsReport.type","location":"core/com.ntt.skyway.core.content/-web-r-t-c-stats-report/type.html","searchKeys":["type","val type: String","com.ntt.skyway.core.content.WebRTCStatsReport.type"]},{"name":"val useDtx: Boolean? = null","description":"com.ntt.skyway.core.content.Codec.Parameters.useDtx","location":"core/com.ntt.skyway.core.content/-codec/-parameters/use-dtx.html","searchKeys":["useDtx","val useDtx: Boolean? = null","com.ntt.skyway.core.content.Codec.Parameters.useDtx"]},{"name":"val value: Int","description":"com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.value","location":"core/com.ntt.skyway.core.content.sink/-surface-view-renderer/-layout-param/value.html","searchKeys":["value","val value: Int","com.ntt.skyway.core.content.sink.SurfaceViewRenderer.LayoutParam.value"]},{"name":"val value: String","description":"com.ntt.skyway.core.network.WebSocketHeader.value","location":"core/com.ntt.skyway.core.network/-web-socket-header/value.html","searchKeys":["value","val value: String","com.ntt.skyway.core.network.WebSocketHeader.value"]},{"name":"val version: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.IceParams.version","location":"core/com.ntt.skyway.core/-sky-way-context/-ice-params/version.html","searchKeys":["version","val version: Int? = null","com.ntt.skyway.core.SkyWayContext.IceParams.version"]},{"name":"val version: Int? = null","description":"com.ntt.skyway.core.SkyWayContext.Sfu.version","location":"core/com.ntt.skyway.core/-sky-way-context/-sfu/version.html","searchKeys":["version","val version: Int? = null","com.ntt.skyway.core.SkyWayContext.Sfu.version"]},{"name":"val webRTCLog: Boolean = false","description":"com.ntt.skyway.core.SkyWayContext.Options.webRTCLog","location":"core/com.ntt.skyway.core/-sky-way-context/-options/web-r-t-c-log.html","searchKeys":["webRTCLog","val webRTCLog: Boolean = false","com.ntt.skyway.core.SkyWayContext.Options.webRTCLog"]},{"name":"val width: Int","description":"com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.width","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/-capturing-options/width.html","searchKeys":["width","val width: Int","com.ntt.skyway.core.content.local.source.CameraSource.CapturingOptions.width"]},{"name":"val width: Int","description":"com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.width","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/-video-frame-buffer/width.html","searchKeys":["width","val width: Int","com.ntt.skyway.core.content.sink.CustomRenderer.VideoFrameBuffer.width"]},{"name":"var isSetup: Boolean = false","description":"com.ntt.skyway.core.SkyWayContext.isSetup","location":"core/com.ntt.skyway.core/-sky-way-context/is-setup.html","searchKeys":["isSetup","var isSetup: Boolean = false","com.ntt.skyway.core.SkyWayContext.isSetup"]},{"name":"var logLevel: Logger.LogLevel","description":"com.ntt.skyway.core.util.Logger.logLevel","location":"core/com.ntt.skyway.core.util/-logger/log-level.html","searchKeys":["logLevel","var logLevel: Logger.LogLevel","com.ntt.skyway.core.util.Logger.logLevel"]},{"name":"var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.AudioSource.onAudioBufferHandler","location":"core/com.ntt.skyway.core.content.local.source/-audio-source/on-audio-buffer-handler.html","searchKeys":["onAudioBufferHandler","var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","com.ntt.skyway.core.content.local.source.AudioSource.onAudioBufferHandler"]},{"name":"var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.sink.AudioDestination.onAudioBufferHandler","location":"core/com.ntt.skyway.core.content.sink/-audio-destination/on-audio-buffer-handler.html","searchKeys":["onAudioBufferHandler","var onAudioBufferHandler: (buffer: ByteBuffer) -> Unit? = null","com.ntt.skyway.core.content.sink.AudioDestination.onAudioBufferHandler"]},{"name":"var onCameraChangeErrorHandler: (reason: String?) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangeErrorHandler","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/on-camera-change-error-handler.html","searchKeys":["onCameraChangeErrorHandler","var onCameraChangeErrorHandler: (reason: String?) -> Unit? = null","com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangeErrorHandler"]},{"name":"var onCameraChangedHandler: (success: Boolean) -> Unit? = null","description":"com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangedHandler","location":"core/com.ntt.skyway.core.content.local.source/-camera-source/on-camera-changed-handler.html","searchKeys":["onCameraChangedHandler","var onCameraChangedHandler: (success: Boolean) -> Unit? = null","com.ntt.skyway.core.content.local.source.CameraSource.onCameraChangedHandler"]},{"name":"var onDataBufferHandler: (data: ByteArray) -> Unit? = null","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.onDataBufferHandler","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/on-data-buffer-handler.html","searchKeys":["onDataBufferHandler","var onDataBufferHandler: (data: ByteArray) -> Unit? = null","com.ntt.skyway.core.content.remote.RemoteDataStream.onDataBufferHandler"]},{"name":"var onDataHandler: (data: String) -> Unit? = null","description":"com.ntt.skyway.core.content.remote.RemoteDataStream.onDataHandler","location":"core/com.ntt.skyway.core.content.remote/-remote-data-stream/on-data-handler.html","searchKeys":["onDataHandler","var onDataHandler: (data: String) -> Unit? = null","com.ntt.skyway.core.content.remote.RemoteDataStream.onDataHandler"]},{"name":"var onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onErrorHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-error-handler.html","searchKeys":["onErrorHandler","var onErrorHandler: (error: SkyWayContext.Error) -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onErrorHandler"]},{"name":"var onFrameHandler: (buffer: CustomRenderer.VideoFrameBuffer) -> Unit? = null","description":"com.ntt.skyway.core.content.sink.CustomRenderer.onFrameHandler","location":"core/com.ntt.skyway.core.content.sink/-custom-renderer/on-frame-handler.html","searchKeys":["onFrameHandler","var onFrameHandler: (buffer: CustomRenderer.VideoFrameBuffer) -> Unit? = null","com.ntt.skyway.core.content.sink.CustomRenderer.onFrameHandler"]},{"name":"var onLogHandler: (level: Logger.LogLevel, message: String) -> Unit? = null","description":"com.ntt.skyway.core.util.Logger.onLogHandler","location":"core/com.ntt.skyway.core.util/-logger/on-log-handler.html","searchKeys":["onLogHandler","var onLogHandler: (level: Logger.LogLevel, message: String) -> Unit? = null","com.ntt.skyway.core.util.Logger.onLogHandler"]},{"name":"var onReconnectStartHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onReconnectStartHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-start-handler.html","searchKeys":["onReconnectStartHandler","var onReconnectStartHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onReconnectStartHandler"]},{"name":"var onReconnectSuccessHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onReconnectSuccessHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-reconnect-success-handler.html","searchKeys":["onReconnectSuccessHandler","var onReconnectSuccessHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onReconnectSuccessHandler"]},{"name":"var onTokenExpiredHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onTokenExpiredHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-expired-handler.html","searchKeys":["onTokenExpiredHandler","var onTokenExpiredHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onTokenExpiredHandler"]},{"name":"var onTokenRefreshingNeededHandler: () -> Unit? = null","description":"com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeededHandler","location":"core/com.ntt.skyway.core/-sky-way-context/on-token-refreshing-needed-handler.html","searchKeys":["onTokenRefreshingNeededHandler","var onTokenRefreshingNeededHandler: () -> Unit? = null","com.ntt.skyway.core.SkyWayContext.onTokenRefreshingNeededHandler"]},{"name":"var webRTCLog: Boolean = false","description":"com.ntt.skyway.core.util.Logger.webRTCLog","location":"core/com.ntt.skyway.core.util/-logger/web-r-t-c-log.html","searchKeys":["webRTCLog","var webRTCLog: Boolean = false","com.ntt.skyway.core.util.Logger.webRTCLog"]}] diff --git a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/index.html b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/index.html index 22f5cae..f9468a6 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/index.html +++ b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/index.html @@ -87,7 +87,7 @@

Functions

-
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。 Room.onStreamPublishedHandlerが発火します。

+
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。既にpublish中のStreamは指定することができません。 Room.onStreamPublishedHandlerが発火します。

@@ -179,7 +179,7 @@

Properties

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

@@ -194,7 +194,7 @@

Properties

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

@@ -254,7 +254,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html index c5e2f08..dd320e7 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html +++ b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/publish.html b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/publish.html index 363e6f3..a4c9c6c 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-local-room-member/publish.html +++ b/docs/room/room/com.ntt.skyway.room.member/-local-room-member/publish.html @@ -27,7 +27,7 @@

publish

-
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。 Room.onStreamPublishedHandlerが発火します。

Parameters

localStream

publishするStream。既にpublish中のStreamは指定することができません。

+
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。既にpublish中のStreamは指定することができません。 Room.onStreamPublishedHandlerが発火します。

Parameters

localStream

publishするStream。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-remote-room-member/index.html b/docs/room/room/com.ntt.skyway.room.member/-remote-room-member/index.html index dc92166..32517b0 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-remote-room-member/index.html +++ b/docs/room/room/com.ntt.skyway.room.member/-remote-room-member/index.html @@ -149,7 +149,7 @@

Properties

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

@@ -164,7 +164,7 @@

Properties

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/-init.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/-init.html index 928828b..d5fb876 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/-init.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/-init.html @@ -22,12 +22,12 @@
-
+

Init

-
fun Init(name: String, metadata: String? = "", keepAliveIntervalSec: Int = 30)
+
fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30)
diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/index.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/index.html index f01b35b..29dbfea 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/index.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/index.html @@ -26,23 +26,23 @@

Init

-
data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int)

RoomMemberの初期設定。

+
data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int)

RoomMemberの初期設定。

Constructors

-
+
- +
Link copied to clipboard
-
fun Init(name: String, metadata: String? = "", keepAliveIntervalSec: Int = 30)
+
fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30)
@@ -74,7 +74,7 @@

Properties

-
val metadata: String?

RoomMemberのMetadata。

+
val metadata: String? = null

RoomMemberのMetadata。

@@ -89,7 +89,7 @@

Properties

-
val name: String

RoomMemberの名前。

+
val name: String? = null

RoomMemberの名前。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/metadata.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/metadata.html index 0649fef..51905aa 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/metadata.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/metadata.html @@ -27,7 +27,7 @@

metadata

-
val metadata: String?

RoomMemberのMetadata。

+
val metadata: String? = null

RoomMemberのMetadata。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/name.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/name.html index 9d21a78..99202a6 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/name.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/-init/name.html @@ -27,7 +27,7 @@

name

-
val name: String

RoomMemberの名前。

+
val name: String? = null

RoomMemberの名前。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/index.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/index.html index f0ae552..2b416d5 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/index.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/index.html @@ -42,7 +42,7 @@

Types

-
data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int)

RoomMemberの初期設定。

+
data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int)

RoomMemberの初期設定。

@@ -136,7 +136,7 @@

Properties

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

@@ -151,7 +151,7 @@

Properties

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/metadata.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/metadata.html index c71c647..af1307d 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/metadata.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/metadata.html @@ -27,7 +27,7 @@

metadata

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

diff --git a/docs/room/room/com.ntt.skyway.room.member/-room-member/name.html b/docs/room/room/com.ntt.skyway.room.member/-room-member/name.html index 374db21..01d73ae 100644 --- a/docs/room/room/com.ntt.skyway.room.member/-room-member/name.html +++ b/docs/room/room/com.ntt.skyway.room.member/-room-member/name.html @@ -27,7 +27,7 @@

name

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

diff --git a/docs/room/room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html b/docs/room/room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html index 9cc046b..46c3a37 100644 --- a/docs/room/room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html +++ b/docs/room/room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html @@ -87,7 +87,7 @@

Functions

-
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。 Room.onStreamPublishedHandlerが発火します。

+
open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?

LocalStreamをpublishします。既にpublish中のStreamは指定することができません。 Room.onStreamPublishedHandlerが発火します。

@@ -179,7 +179,7 @@

Properties

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

@@ -194,7 +194,7 @@

Properties

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

@@ -254,7 +254,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room.p2p/-p2-p-room/index.html b/docs/room/room/com.ntt.skyway.room.p2p/-p2-p-room/index.html index 38b7767..4e545b6 100644 --- a/docs/room/room/com.ntt.skyway.room.p2p/-p2-p-room/index.html +++ b/docs/room/room/com.ntt.skyway.room.p2p/-p2-p-room/index.html @@ -181,7 +181,7 @@

Properties

-
val metadata: String

このRoomのMetadata。

+
val metadata: String?

このRoomのMetadata。

@@ -196,7 +196,7 @@

Properties

-
val name: String

このRoomのname。

+
val name: String?

このRoomのname。

@@ -376,7 +376,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html b/docs/room/room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html index 40c0fa9..88f4a38 100644 --- a/docs/room/room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html +++ b/docs/room/room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html @@ -179,7 +179,7 @@

Properties

-
val metadata: String

このRoomMemberのMetadata。

+
val metadata: String?

このRoomMemberのMetadata。

@@ -194,7 +194,7 @@

Properties

-
val name: String

このRoomMemberの名前。

+
val name: String?

このRoomMemberの名前。

@@ -254,7 +254,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

PublicationをSubscribeした時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html b/docs/room/room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html index f0710e6..3246663 100644 --- a/docs/room/room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html +++ b/docs/room/room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html @@ -181,7 +181,7 @@

Properties

-
val metadata: String

このRoomのMetadata。

+
val metadata: String?

このRoomのMetadata。

@@ -196,7 +196,7 @@

Properties

-
val name: String

このRoomのname。

+
val name: String?

このRoomのname。

@@ -376,7 +376,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room-publication/get-stats.html b/docs/room/room/com.ntt.skyway.room/-room-publication/get-stats.html index dd44200..85d0fb7 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-publication/get-stats.html +++ b/docs/room/room/com.ntt.skyway.room/-room-publication/get-stats.html @@ -27,7 +27,7 @@

getStats

-
fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

Parameters

remoteMemberId

対象のRemoteMemberのID

+
fun getStats(remoteMemberId: String): WebRTCStats?
diff --git a/docs/room/room/com.ntt.skyway.room/-room-publication/index.html b/docs/room/room/com.ntt.skyway.room/-room-publication/index.html index 03f9948..3f847ef 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-publication/index.html +++ b/docs/room/room/com.ntt.skyway.room/-room-publication/index.html @@ -119,7 +119,7 @@

Functions

-
fun getStats(remoteMemberId: String): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
fun getStats(remoteMemberId: String): WebRTCStats?
@@ -316,7 +316,7 @@

Properties

-
var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

このRoomPublicationのSubscribeされた時に発火するハンドラ。

+
var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

このRoomPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html b/docs/room/room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html index 52ec1f3..abc88d7 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html +++ b/docs/room/room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html @@ -27,7 +27,7 @@

onSubscribedHandler

-
var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

このRoomPublicationのSubscribeされた時に発火するハンドラ。

+
var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

このRoomPublicationのSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room-subscription/get-stats.html b/docs/room/room/com.ntt.skyway.room/-room-subscription/get-stats.html index 387f097..1e48ab0 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-subscription/get-stats.html +++ b/docs/room/room/com.ntt.skyway.room/-room-subscription/get-stats.html @@ -27,7 +27,7 @@

getStats

-
fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
fun getStats(): WebRTCStats?
diff --git a/docs/room/room/com.ntt.skyway.room/-room-subscription/index.html b/docs/room/room/com.ntt.skyway.room/-room-subscription/index.html index 5858bf5..6dc9d66 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-subscription/index.html +++ b/docs/room/room/com.ntt.skyway.room/-room-subscription/index.html @@ -104,7 +104,7 @@

Functions

-
fun getStats(): WebRTCStats?

統計情報を取得します。 experimentalな機能です。

+
fun getStats(): WebRTCStats?
@@ -256,7 +256,7 @@

Properties

-
val stream: RemoteStream?

このRoomSubscriptionのStream

+
val stream: RemoteStream?

このRoomSubscriptionのStreamLocalRoomMember.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room-subscription/stream.html b/docs/room/room/com.ntt.skyway.room/-room-subscription/stream.html index aea35c3..89c501a 100644 --- a/docs/room/room/com.ntt.skyway.room/-room-subscription/stream.html +++ b/docs/room/room/com.ntt.skyway.room/-room-subscription/stream.html @@ -27,7 +27,7 @@

stream

-
val stream: RemoteStream?

このRoomSubscriptionのStream

+
val stream: RemoteStream?

このRoomSubscriptionのStreamLocalRoomMember.subscribeの返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room/index.html b/docs/room/room/com.ntt.skyway.room/-room/index.html index 3a9f48e..9854fad 100644 --- a/docs/room/room/com.ntt.skyway.room/-room/index.html +++ b/docs/room/room/com.ntt.skyway.room/-room/index.html @@ -181,7 +181,7 @@

Properties

-
val metadata: String

このRoomのMetadata。

+
val metadata: String?

このRoomのMetadata。

@@ -196,7 +196,7 @@

Properties

-
val name: String

このRoomのname。

+
val name: String?

このRoomのname。

@@ -376,7 +376,7 @@

Properties

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/com.ntt.skyway.room/-room/metadata.html b/docs/room/room/com.ntt.skyway.room/-room/metadata.html index 36e2cda..b00aafd 100644 --- a/docs/room/room/com.ntt.skyway.room/-room/metadata.html +++ b/docs/room/room/com.ntt.skyway.room/-room/metadata.html @@ -27,7 +27,7 @@

metadata

-
val metadata: String

このRoomのMetadata。

+
val metadata: String?

このRoomのMetadata。

diff --git a/docs/room/room/com.ntt.skyway.room/-room/name.html b/docs/room/room/com.ntt.skyway.room/-room/name.html index 06a27fb..70d90ca 100644 --- a/docs/room/room/com.ntt.skyway.room/-room/name.html +++ b/docs/room/room/com.ntt.skyway.room/-room/name.html @@ -27,7 +27,7 @@

name

-
val name: String

このRoomのname。

+
val name: String?

このRoomのname。

diff --git a/docs/room/room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html b/docs/room/room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html index d777ce4..04687a7 100644 --- a/docs/room/room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html +++ b/docs/room/room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html @@ -27,7 +27,7 @@

onPublicationSubscribedHandler

-
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。

+
var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null

StreamがSubscribeされた時に発火するハンドラ。 Subscriptionにはまだstreamがsetされていない可能性があります。

diff --git a/docs/room/room/package-list b/docs/room/room/package-list index 350c82a..0b7a184 100644 --- a/docs/room/room/package-list +++ b/docs/room/room/package-list @@ -18,7 +18,7 @@ $dokka.location:com.ntt.skyway.room.member/RemoteRoomMember/side/#/PointingToDec $dokka.location:com.ntt.skyway.room.member/RemoteRoomMember/subscribe/#kotlin.String/PointingToDeclaration/room/com.ntt.skyway.room.member/-remote-room-member/subscribe.html $dokka.location:com.ntt.skyway.room.member/RemoteRoomMember/unsubscribe/#kotlin.String/PointingToDeclaration/room/com.ntt.skyway.room.member/-remote-room-member/unsubscribe.html $dokka.location:com.ntt.skyway.room.member/RoomMember.Init///PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/index.html -$dokka.location:com.ntt.skyway.room.member/RoomMember.Init/Init/#kotlin.String#kotlin.String?#kotlin.Int/PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/-init.html +$dokka.location:com.ntt.skyway.room.member/RoomMember.Init/Init/#kotlin.String?#kotlin.String?#kotlin.Int/PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/-init.html $dokka.location:com.ntt.skyway.room.member/RoomMember.Init/keepAliveIntervalSec/#/PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/keep-alive-interval-sec.html $dokka.location:com.ntt.skyway.room.member/RoomMember.Init/metadata/#/PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/metadata.html $dokka.location:com.ntt.skyway.room.member/RoomMember.Init/name/#/PointingToDeclaration/room/com.ntt.skyway.room.member/-room-member/-init/name.html diff --git a/docs/room/scripts/pages.json b/docs/room/scripts/pages.json index 35358f5..e8d261e 100644 --- a/docs/room/scripts/pages.json +++ b/docs/room/scripts/pages.json @@ -1 +1 @@ -[{"name":"P2P()","description":"com.ntt.skyway.room.Room.Type.P2P","location":"room/com.ntt.skyway.room/-room/-type/-p2-p/index.html","searchKeys":["P2P","P2P()","com.ntt.skyway.room.Room.Type.P2P"]},{"name":"SFU()","description":"com.ntt.skyway.room.Room.Type.SFU","location":"room/com.ntt.skyway.room/-room/-type/-s-f-u/index.html","searchKeys":["SFU","SFU()","com.ntt.skyway.room.Room.Type.SFU"]},{"name":"abstract class LocalRoomMember : RoomMember","description":"com.ntt.skyway.room.member.LocalRoomMember","location":"room/com.ntt.skyway.room.member/-local-room-member/index.html","searchKeys":["LocalRoomMember","abstract class LocalRoomMember : RoomMember","com.ntt.skyway.room.member.LocalRoomMember"]},{"name":"abstract class Room","description":"com.ntt.skyway.room.Room","location":"room/com.ntt.skyway.room/-room/index.html","searchKeys":["Room","abstract class Room","com.ntt.skyway.room.Room"]},{"name":"abstract class RoomMember","description":"com.ntt.skyway.room.member.RoomMember","location":"room/com.ntt.skyway.room.member/-room-member/index.html","searchKeys":["RoomMember","abstract class RoomMember","com.ntt.skyway.room.member.RoomMember"]},{"name":"abstract suspend fun join(memberInit: RoomMember.Init): LocalRoomMember?","description":"com.ntt.skyway.room.Room.join","location":"room/com.ntt.skyway.room/-room/join.html","searchKeys":["join","abstract suspend fun join(memberInit: RoomMember.Init): LocalRoomMember?","com.ntt.skyway.room.Room.join"]},{"name":"abstract val type: Room.Type","description":"com.ntt.skyway.room.Room.type","location":"room/com.ntt.skyway.room/-room/type.html","searchKeys":["type","abstract val type: Room.Type","com.ntt.skyway.room.Room.type"]},{"name":"class LocalP2PRoomMember : LocalRoomMember","description":"com.ntt.skyway.room.p2p.LocalP2PRoomMember","location":"room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html","searchKeys":["LocalP2PRoomMember","class LocalP2PRoomMember : LocalRoomMember","com.ntt.skyway.room.p2p.LocalP2PRoomMember"]},{"name":"class LocalSFURoomMember : LocalRoomMember","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html","searchKeys":["LocalSFURoomMember","class LocalSFURoomMember : LocalRoomMember","com.ntt.skyway.room.sfu.LocalSFURoomMember"]},{"name":"class P2PRoom : Room","description":"com.ntt.skyway.room.p2p.P2PRoom","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/index.html","searchKeys":["P2PRoom","class P2PRoom : Room","com.ntt.skyway.room.p2p.P2PRoom"]},{"name":"class RoomPublication","description":"com.ntt.skyway.room.RoomPublication","location":"room/com.ntt.skyway.room/-room-publication/index.html","searchKeys":["RoomPublication","class RoomPublication","com.ntt.skyway.room.RoomPublication"]},{"name":"class RoomSubscription","description":"com.ntt.skyway.room.RoomSubscription","location":"room/com.ntt.skyway.room/-room-subscription/index.html","searchKeys":["RoomSubscription","class RoomSubscription","com.ntt.skyway.room.RoomSubscription"]},{"name":"class SFURoom : Room","description":"com.ntt.skyway.room.sfu.SFURoom","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html","searchKeys":["SFURoom","class SFURoom : Room","com.ntt.skyway.room.sfu.SFURoom"]},{"name":"data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int)","description":"com.ntt.skyway.room.member.RoomMember.Init","location":"room/com.ntt.skyway.room.member/-room-member/-init/index.html","searchKeys":["Init","data class Init(name: String, metadata: String?, keepAliveIntervalSec: Int)","com.ntt.skyway.room.member.RoomMember.Init"]},{"name":"data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?, maxSubscribers: Int)","description":"com.ntt.skyway.room.RoomPublication.Options","location":"room/com.ntt.skyway.room/-room-publication/-options/index.html","searchKeys":["Options","data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?, maxSubscribers: Int)","com.ntt.skyway.room.RoomPublication.Options"]},{"name":"data class Options(preferredEncodingId: String?)","description":"com.ntt.skyway.room.RoomSubscription.Options","location":"room/com.ntt.skyway.room/-room-subscription/-options/index.html","searchKeys":["Options","data class Options(preferredEncodingId: String?)","com.ntt.skyway.room.RoomSubscription.Options"]},{"name":"enum Type : Enum ","description":"com.ntt.skyway.room.Room.Type","location":"room/com.ntt.skyway.room/-room/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.ntt.skyway.room.Room.Type"]},{"name":"fun Init(name: String, metadata: String? = \"\", keepAliveIntervalSec: Int = 30)","description":"com.ntt.skyway.room.member.RoomMember.Init.Init","location":"room/com.ntt.skyway.room.member/-room-member/-init/-init.html","searchKeys":["Init","fun Init(name: String, metadata: String? = \"\", keepAliveIntervalSec: Int = 30)","com.ntt.skyway.room.member.RoomMember.Init.Init"]},{"name":"fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null, maxSubscribers: Int = 10)","description":"com.ntt.skyway.room.RoomPublication.Options.Options","location":"room/com.ntt.skyway.room/-room-publication/-options/-options.html","searchKeys":["Options","fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null, maxSubscribers: Int = 10)","com.ntt.skyway.room.RoomPublication.Options.Options"]},{"name":"fun Options(preferredEncodingId: String? = null)","description":"com.ntt.skyway.room.RoomSubscription.Options.Options","location":"room/com.ntt.skyway.room/-room-subscription/-options/-options.html","searchKeys":["Options","fun Options(preferredEncodingId: String? = null)","com.ntt.skyway.room.RoomSubscription.Options.Options"]},{"name":"fun dispose()","description":"com.ntt.skyway.room.Room.dispose","location":"room/com.ntt.skyway.room/-room/dispose.html","searchKeys":["dispose","fun dispose()","com.ntt.skyway.room.Room.dispose"]},{"name":"fun getStats(): WebRTCStats?","description":"com.ntt.skyway.room.RoomSubscription.getStats","location":"room/com.ntt.skyway.room/-room-subscription/get-stats.html","searchKeys":["getStats","fun getStats(): WebRTCStats?","com.ntt.skyway.room.RoomSubscription.getStats"]},{"name":"fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.room.RoomPublication.getStats","location":"room/com.ntt.skyway.room/-room-publication/get-stats.html","searchKeys":["getStats","fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.room.RoomPublication.getStats"]},{"name":"fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.room.RoomPublication.replaceStream","location":"room/com.ntt.skyway.room/-room-publication/replace-stream.html","searchKeys":["replaceStream","fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.room.RoomPublication.replaceStream"]},{"name":"fun updateEncodings(encodings: List)","description":"com.ntt.skyway.room.RoomPublication.updateEncodings","location":"room/com.ntt.skyway.room/-room-publication/update-encodings.html","searchKeys":["updateEncodings","fun updateEncodings(encodings: List)","com.ntt.skyway.room.RoomPublication.updateEncodings"]},{"name":"object Companion","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.room.p2p.P2PRoom.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.room.sfu.SFURoom.Companion","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.room.sfu.SFURoom.Companion"]},{"name":"open class RemoteRoomMember : RoomMember","description":"com.ntt.skyway.room.member.RemoteRoomMember","location":"room/com.ntt.skyway.room.member/-remote-room-member/index.html","searchKeys":["RemoteRoomMember","open class RemoteRoomMember : RoomMember","com.ntt.skyway.room.member.RemoteRoomMember"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.RoomPublication.equals","location":"room/com.ntt.skyway.room/-room-publication/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.RoomPublication.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.RoomSubscription.equals","location":"room/com.ntt.skyway.room/-room-subscription/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.RoomSubscription.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.member.RoomMember.equals","location":"room/com.ntt.skyway.room.member/-room-member/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.member.RoomMember.equals"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.RoomPublication.hashCode","location":"room/com.ntt.skyway.room/-room-publication/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.RoomPublication.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.RoomSubscription.hashCode","location":"room/com.ntt.skyway.room/-room-subscription/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.RoomSubscription.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.member.RoomMember.hashCode","location":"room/com.ntt.skyway.room.member/-room-member/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.member.RoomMember.hashCode"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.room.member.LocalRoomMember.side","location":"room/com.ntt.skyway.room.member/-local-room-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.room.member.LocalRoomMember.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.room.member.RemoteRoomMember.side","location":"room/com.ntt.skyway.room.member/-remote-room-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.room.member.RemoteRoomMember.side"]},{"name":"open override val type: Room.Type","description":"com.ntt.skyway.room.p2p.P2PRoom.type","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/type.html","searchKeys":["type","open override val type: Room.Type","com.ntt.skyway.room.p2p.P2PRoom.type"]},{"name":"open override val type: Room.Type","description":"com.ntt.skyway.room.sfu.SFURoom.type","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/type.html","searchKeys":["type","open override val type: Room.Type","com.ntt.skyway.room.sfu.SFURoom.type"]},{"name":"open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?","description":"com.ntt.skyway.room.member.LocalRoomMember.publish","location":"room/com.ntt.skyway.room.member/-local-room-member/publish.html","searchKeys":["publish","open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?","com.ntt.skyway.room.member.LocalRoomMember.publish"]},{"name":"open suspend fun unpublish(publication: RoomPublication): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unpublish","location":"room/com.ntt.skyway.room.member/-local-room-member/unpublish.html","searchKeys":["unpublish","open suspend fun unpublish(publication: RoomPublication): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unpublish"]},{"name":"open suspend override fun join(memberInit: RoomMember.Init): LocalP2PRoomMember?","description":"com.ntt.skyway.room.p2p.P2PRoom.join","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/join.html","searchKeys":["join","open suspend override fun join(memberInit: RoomMember.Init): LocalP2PRoomMember?","com.ntt.skyway.room.p2p.P2PRoom.join"]},{"name":"open suspend override fun join(memberInit: RoomMember.Init): LocalSFURoomMember?","description":"com.ntt.skyway.room.sfu.SFURoom.join","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/join.html","searchKeys":["join","open suspend override fun join(memberInit: RoomMember.Init): LocalSFURoomMember?","com.ntt.skyway.room.sfu.SFURoom.join"]},{"name":"open suspend override fun publish(localStream: LocalStream, options: RoomPublication.Options?): RoomPublication?","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember.publish","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/publish.html","searchKeys":["publish","open suspend override fun publish(localStream: LocalStream, options: RoomPublication.Options?): RoomPublication?","com.ntt.skyway.room.sfu.LocalSFURoomMember.publish"]},{"name":"open suspend override fun unpublish(publication: RoomPublication): Boolean","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember.unpublish","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publication: RoomPublication): Boolean","com.ntt.skyway.room.sfu.LocalSFURoomMember.unpublish"]},{"name":"open val side: Member.Side","description":"com.ntt.skyway.room.member.RoomMember.side","location":"room/com.ntt.skyway.room.member/-room-member/side.html","searchKeys":["side","open val side: Member.Side","com.ntt.skyway.room.member.RoomMember.side"]},{"name":"suspend fun cancel(): Boolean","description":"com.ntt.skyway.room.RoomPublication.cancel","location":"room/com.ntt.skyway.room/-room-publication/cancel.html","searchKeys":["cancel","suspend fun cancel(): Boolean","com.ntt.skyway.room.RoomPublication.cancel"]},{"name":"suspend fun cancel(): Boolean","description":"com.ntt.skyway.room.RoomSubscription.cancel","location":"room/com.ntt.skyway.room/-room-subscription/cancel.html","searchKeys":["cancel","suspend fun cancel(): Boolean","com.ntt.skyway.room.RoomSubscription.cancel"]},{"name":"suspend fun changePreferredEncoding(preferredEncodingId: String)","description":"com.ntt.skyway.room.RoomSubscription.changePreferredEncoding","location":"room/com.ntt.skyway.room/-room-subscription/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","suspend fun changePreferredEncoding(preferredEncodingId: String)","com.ntt.skyway.room.RoomSubscription.changePreferredEncoding"]},{"name":"suspend fun close(): Boolean","description":"com.ntt.skyway.room.Room.close","location":"room/com.ntt.skyway.room/-room/close.html","searchKeys":["close","suspend fun close(): Boolean","com.ntt.skyway.room.Room.close"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.create","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.create"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.create","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.create"]},{"name":"suspend fun disable(): Boolean","description":"com.ntt.skyway.room.RoomPublication.disable","location":"room/com.ntt.skyway.room/-room-publication/disable.html","searchKeys":["disable","suspend fun disable(): Boolean","com.ntt.skyway.room.RoomPublication.disable"]},{"name":"suspend fun enable(): Boolean","description":"com.ntt.skyway.room.RoomPublication.enable","location":"room/com.ntt.skyway.room/-room-publication/enable.html","searchKeys":["enable","suspend fun enable(): Boolean","com.ntt.skyway.room.RoomPublication.enable"]},{"name":"suspend fun find(name: String? = null, id: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.find","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.find"]},{"name":"suspend fun find(name: String? = null, id: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.find","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.find"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.findOrCreate","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.findOrCreate"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.findOrCreate","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.findOrCreate"]},{"name":"suspend fun leave(): Boolean","description":"com.ntt.skyway.room.member.RoomMember.leave","location":"room/com.ntt.skyway.room.member/-room-member/leave.html","searchKeys":["leave","suspend fun leave(): Boolean","com.ntt.skyway.room.member.RoomMember.leave"]},{"name":"suspend fun leave(member: RoomMember): Boolean","description":"com.ntt.skyway.room.Room.leave","location":"room/com.ntt.skyway.room/-room/leave.html","searchKeys":["leave","suspend fun leave(member: RoomMember): Boolean","com.ntt.skyway.room.Room.leave"]},{"name":"suspend fun subscribe(publication: RoomPublication, options: RoomSubscription.Options? = null): RoomSubscription?","description":"com.ntt.skyway.room.member.LocalRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publication: RoomPublication, options: RoomSubscription.Options? = null): RoomSubscription?","com.ntt.skyway.room.member.LocalRoomMember.subscribe"]},{"name":"suspend fun subscribe(publicationId: String): Subscription?","description":"com.ntt.skyway.room.member.RemoteRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-remote-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String): Subscription?","com.ntt.skyway.room.member.RemoteRoomMember.subscribe"]},{"name":"suspend fun subscribe(publicationId: String, options: RoomSubscription.Options? = null): RoomSubscription?","description":"com.ntt.skyway.room.member.LocalRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String, options: RoomSubscription.Options? = null): RoomSubscription?","com.ntt.skyway.room.member.LocalRoomMember.subscribe"]},{"name":"suspend fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unsubscribe"]},{"name":"suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unsubscribe"]},{"name":"suspend fun unsubscribe(subscriptionsId: String): Boolean","description":"com.ntt.skyway.room.member.RemoteRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-remote-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionsId: String): Boolean","com.ntt.skyway.room.member.RemoteRoomMember.unsubscribe"]},{"name":"suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.room.Room.updateMetadata","location":"room/com.ntt.skyway.room/-room/update-metadata.html","searchKeys":["updateMetadata","suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.room.Room.updateMetadata"]},{"name":"suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.room.member.RoomMember.updateMetadata","location":"room/com.ntt.skyway.room.member/-room-member/update-metadata.html","searchKeys":["updateMetadata","suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.room.member.RoomMember.updateMetadata"]},{"name":"val codecCapabilities: List","description":"com.ntt.skyway.room.RoomPublication.codecCapabilities","location":"room/com.ntt.skyway.room/-room-publication/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List","com.ntt.skyway.room.RoomPublication.codecCapabilities"]},{"name":"val codecCapabilities: List? = null","description":"com.ntt.skyway.room.RoomPublication.Options.codecCapabilities","location":"room/com.ntt.skyway.room/-room-publication/-options/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List? = null","com.ntt.skyway.room.RoomPublication.Options.codecCapabilities"]},{"name":"val contentType: Stream.ContentType","description":"com.ntt.skyway.room.RoomPublication.contentType","location":"room/com.ntt.skyway.room/-room-publication/content-type.html","searchKeys":["contentType","val contentType: Stream.ContentType","com.ntt.skyway.room.RoomPublication.contentType"]},{"name":"val contentType: Stream.ContentType","description":"com.ntt.skyway.room.RoomSubscription.contentType","location":"room/com.ntt.skyway.room/-room-subscription/content-type.html","searchKeys":["contentType","val contentType: Stream.ContentType","com.ntt.skyway.room.RoomSubscription.contentType"]},{"name":"val encodings: List","description":"com.ntt.skyway.room.RoomPublication.encodings","location":"room/com.ntt.skyway.room/-room-publication/encodings.html","searchKeys":["encodings","val encodings: List","com.ntt.skyway.room.RoomPublication.encodings"]},{"name":"val encodings: List? = null","description":"com.ntt.skyway.room.RoomPublication.Options.encodings","location":"room/com.ntt.skyway.room/-room-publication/-options/encodings.html","searchKeys":["encodings","val encodings: List? = null","com.ntt.skyway.room.RoomPublication.Options.encodings"]},{"name":"val id: String","description":"com.ntt.skyway.room.Room.id","location":"room/com.ntt.skyway.room/-room/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.Room.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.RoomPublication.id","location":"room/com.ntt.skyway.room/-room-publication/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.RoomPublication.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.RoomSubscription.id","location":"room/com.ntt.skyway.room/-room-subscription/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.RoomSubscription.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.member.RoomMember.id","location":"room/com.ntt.skyway.room.member/-room-member/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.member.RoomMember.id"]},{"name":"val isEnabled: Boolean? = null","description":"com.ntt.skyway.room.RoomPublication.Options.isEnabled","location":"room/com.ntt.skyway.room/-room-publication/-options/is-enabled.html","searchKeys":["isEnabled","val isEnabled: Boolean? = null","com.ntt.skyway.room.RoomPublication.Options.isEnabled"]},{"name":"val keepAliveIntervalSec: Int = 30","description":"com.ntt.skyway.room.member.RoomMember.Init.keepAliveIntervalSec","location":"room/com.ntt.skyway.room.member/-room-member/-init/keep-alive-interval-sec.html","searchKeys":["keepAliveIntervalSec","val keepAliveIntervalSec: Int = 30","com.ntt.skyway.room.member.RoomMember.Init.keepAliveIntervalSec"]},{"name":"val localRoomMember: LocalRoomMember?","description":"com.ntt.skyway.room.Room.localRoomMember","location":"room/com.ntt.skyway.room/-room/local-room-member.html","searchKeys":["localRoomMember","val localRoomMember: LocalRoomMember?","com.ntt.skyway.room.Room.localRoomMember"]},{"name":"val maxSubscribers: Int = 10","description":"com.ntt.skyway.room.RoomPublication.Options.maxSubscribers","location":"room/com.ntt.skyway.room/-room-publication/-options/max-subscribers.html","searchKeys":["maxSubscribers","val maxSubscribers: Int = 10","com.ntt.skyway.room.RoomPublication.Options.maxSubscribers"]},{"name":"val members: Set","description":"com.ntt.skyway.room.Room.members","location":"room/com.ntt.skyway.room/-room/members.html","searchKeys":["members","val members: Set","com.ntt.skyway.room.Room.members"]},{"name":"val metadata: String","description":"com.ntt.skyway.room.Room.metadata","location":"room/com.ntt.skyway.room/-room/metadata.html","searchKeys":["metadata","val metadata: String","com.ntt.skyway.room.Room.metadata"]},{"name":"val metadata: String","description":"com.ntt.skyway.room.RoomPublication.metadata","location":"room/com.ntt.skyway.room/-room-publication/metadata.html","searchKeys":["metadata","val metadata: String","com.ntt.skyway.room.RoomPublication.metadata"]},{"name":"val metadata: String","description":"com.ntt.skyway.room.member.RoomMember.metadata","location":"room/com.ntt.skyway.room.member/-room-member/metadata.html","searchKeys":["metadata","val metadata: String","com.ntt.skyway.room.member.RoomMember.metadata"]},{"name":"val metadata: String?","description":"com.ntt.skyway.room.member.RoomMember.Init.metadata","location":"room/com.ntt.skyway.room.member/-room-member/-init/metadata.html","searchKeys":["metadata","val metadata: String?","com.ntt.skyway.room.member.RoomMember.Init.metadata"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.room.RoomPublication.Options.metadata","location":"room/com.ntt.skyway.room/-room-publication/-options/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.room.RoomPublication.Options.metadata"]},{"name":"val name: String","description":"com.ntt.skyway.room.Room.name","location":"room/com.ntt.skyway.room/-room/name.html","searchKeys":["name","val name: String","com.ntt.skyway.room.Room.name"]},{"name":"val name: String","description":"com.ntt.skyway.room.member.RoomMember.Init.name","location":"room/com.ntt.skyway.room.member/-room-member/-init/name.html","searchKeys":["name","val name: String","com.ntt.skyway.room.member.RoomMember.Init.name"]},{"name":"val name: String","description":"com.ntt.skyway.room.member.RoomMember.name","location":"room/com.ntt.skyway.room.member/-room-member/name.html","searchKeys":["name","val name: String","com.ntt.skyway.room.member.RoomMember.name"]},{"name":"val preferredEncodingId: String","description":"com.ntt.skyway.room.RoomSubscription.preferredEncodingId","location":"room/com.ntt.skyway.room/-room-subscription/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String","com.ntt.skyway.room.RoomSubscription.preferredEncodingId"]},{"name":"val preferredEncodingId: String? = null","description":"com.ntt.skyway.room.RoomSubscription.Options.preferredEncodingId","location":"room/com.ntt.skyway.room/-room-subscription/-options/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String? = null","com.ntt.skyway.room.RoomSubscription.Options.preferredEncodingId"]},{"name":"val publication: RoomPublication","description":"com.ntt.skyway.room.RoomSubscription.publication","location":"room/com.ntt.skyway.room/-room-subscription/publication.html","searchKeys":["publication","val publication: RoomPublication","com.ntt.skyway.room.RoomSubscription.publication"]},{"name":"val publications: List","description":"com.ntt.skyway.room.member.RoomMember.publications","location":"room/com.ntt.skyway.room.member/-room-member/publications.html","searchKeys":["publications","val publications: List","com.ntt.skyway.room.member.RoomMember.publications"]},{"name":"val publications: Set","description":"com.ntt.skyway.room.Room.publications","location":"room/com.ntt.skyway.room/-room/publications.html","searchKeys":["publications","val publications: Set","com.ntt.skyway.room.Room.publications"]},{"name":"val publisher: RoomMember?","description":"com.ntt.skyway.room.RoomPublication.publisher","location":"room/com.ntt.skyway.room/-room-publication/publisher.html","searchKeys":["publisher","val publisher: RoomMember?","com.ntt.skyway.room.RoomPublication.publisher"]},{"name":"val room: Room","description":"com.ntt.skyway.room.RoomPublication.room","location":"room/com.ntt.skyway.room/-room-publication/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.RoomPublication.room"]},{"name":"val room: Room","description":"com.ntt.skyway.room.RoomSubscription.room","location":"room/com.ntt.skyway.room/-room-subscription/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.RoomSubscription.room"]},{"name":"val room: Room","description":"com.ntt.skyway.room.member.RoomMember.room","location":"room/com.ntt.skyway.room.member/-room-member/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.member.RoomMember.room"]},{"name":"val state: Channel.State","description":"com.ntt.skyway.room.Room.state","location":"room/com.ntt.skyway.room/-room/state.html","searchKeys":["state","val state: Channel.State","com.ntt.skyway.room.Room.state"]},{"name":"val state: Member.State","description":"com.ntt.skyway.room.member.RoomMember.state","location":"room/com.ntt.skyway.room.member/-room-member/state.html","searchKeys":["state","val state: Member.State","com.ntt.skyway.room.member.RoomMember.state"]},{"name":"val state: Publication.State","description":"com.ntt.skyway.room.RoomPublication.state","location":"room/com.ntt.skyway.room/-room-publication/state.html","searchKeys":["state","val state: Publication.State","com.ntt.skyway.room.RoomPublication.state"]},{"name":"val state: Subscription.State","description":"com.ntt.skyway.room.RoomSubscription.state","location":"room/com.ntt.skyway.room/-room-subscription/state.html","searchKeys":["state","val state: Subscription.State","com.ntt.skyway.room.RoomSubscription.state"]},{"name":"val stream: RemoteStream?","description":"com.ntt.skyway.room.RoomSubscription.stream","location":"room/com.ntt.skyway.room/-room-subscription/stream.html","searchKeys":["stream","val stream: RemoteStream?","com.ntt.skyway.room.RoomSubscription.stream"]},{"name":"val stream: Stream?","description":"com.ntt.skyway.room.RoomPublication.stream","location":"room/com.ntt.skyway.room/-room-publication/stream.html","searchKeys":["stream","val stream: Stream?","com.ntt.skyway.room.RoomPublication.stream"]},{"name":"val subscriber: RoomMember?","description":"com.ntt.skyway.room.RoomSubscription.subscriber","location":"room/com.ntt.skyway.room/-room-subscription/subscriber.html","searchKeys":["subscriber","val subscriber: RoomMember?","com.ntt.skyway.room.RoomSubscription.subscriber"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.room.RoomPublication.subscriptions","location":"room/com.ntt.skyway.room/-room-publication/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.room.RoomPublication.subscriptions"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.room.member.RoomMember.subscriptions","location":"room/com.ntt.skyway.room.member/-room-member/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.room.member.RoomMember.subscriptions"]},{"name":"val subscriptions: Set","description":"com.ntt.skyway.room.Room.subscriptions","location":"room/com.ntt.skyway.room/-room/subscriptions.html","searchKeys":["subscriptions","val subscriptions: Set","com.ntt.skyway.room.Room.subscriptions"]},{"name":"var onCanceledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomSubscription.onCanceledHandler","location":"room/com.ntt.skyway.room/-room-subscription/on-canceled-handler.html","searchKeys":["onCanceledHandler","var onCanceledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomSubscription.onCanceledHandler"]},{"name":"var onClosedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onClosedHandler","location":"room/com.ntt.skyway.room/-room/on-closed-handler.html","searchKeys":["onClosedHandler","var onClosedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onClosedHandler"]},{"name":"var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onConnectionStateChangedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onConnectionStateChangedHandler"]},{"name":"var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomSubscription.onConnectionStateChangedHandler","location":"room/com.ntt.skyway.room/-room-subscription/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.room.RoomSubscription.onConnectionStateChangedHandler"]},{"name":"var onDisabledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onDisabledHandler","location":"room/com.ntt.skyway.room/-room-publication/on-disabled-handler.html","searchKeys":["onDisabledHandler","var onDisabledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onDisabledHandler"]},{"name":"var onEnabledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onEnabledHandler","location":"room/com.ntt.skyway.room/-room-publication/on-enabled-handler.html","searchKeys":["onEnabledHandler","var onEnabledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onEnabledHandler"]},{"name":"var onErrorHandler: (Exception) -> Unit? = null","description":"com.ntt.skyway.room.Room.onErrorHandler","location":"room/com.ntt.skyway.room/-room/on-error-handler.html","searchKeys":["onErrorHandler","var onErrorHandler: (Exception) -> Unit? = null","com.ntt.skyway.room.Room.onErrorHandler"]},{"name":"var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onLeftHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-left-handler.html","searchKeys":["onLeftHandler","var onLeftHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onLeftHandler"]},{"name":"var onMemberJoinedHandler: (member: RoomMember) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberJoinedHandler","location":"room/com.ntt.skyway.room/-room/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","var onMemberJoinedHandler: (member: RoomMember) -> Unit? = null","com.ntt.skyway.room.Room.onMemberJoinedHandler"]},{"name":"var onMemberLeftHandler: (member: RoomMember) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberLeftHandler","location":"room/com.ntt.skyway.room/-room/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","var onMemberLeftHandler: (member: RoomMember) -> Unit? = null","com.ntt.skyway.room.Room.onMemberLeftHandler"]},{"name":"var onMemberListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","var onMemberListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onMemberListChangedHandler"]},{"name":"var onMemberMetadataUpdatedHandler: (member: RoomMember, metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","var onMemberMetadataUpdatedHandler: (member: RoomMember, metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onMemberMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onMetadataUpdatedHandler"]},{"name":"var onPublicationDisabledHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationDisabledHandler","location":"room/com.ntt.skyway.room/-room/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","var onPublicationDisabledHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationDisabledHandler"]},{"name":"var onPublicationEnabledHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationEnabledHandler","location":"room/com.ntt.skyway.room/-room/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","var onPublicationEnabledHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationEnabledHandler"]},{"name":"var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onPublicationListChangedHandler"]},{"name":"var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onPublicationListChangedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onPublicationListChangedHandler"]},{"name":"var onPublicationMetadataUpdatedHandler: (publication: RoomPublication, metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","var onPublicationMetadataUpdatedHandler: (publication: RoomPublication, metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationMetadataUpdatedHandler"]},{"name":"var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationSubscribedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationSubscribedHandler"]},{"name":"var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onPublicationSubscribedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onPublicationSubscribedHandler"]},{"name":"var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationUnsubscribedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationUnsubscribedHandler"]},{"name":"var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onPublicationUnsubscribedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onPublicationUnsubscribedHandler"]},{"name":"var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onStreamPublishedHandler","location":"room/com.ntt.skyway.room/-room/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onStreamPublishedHandler"]},{"name":"var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onStreamPublishedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onStreamPublishedHandler"]},{"name":"var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onStreamUnpublishedHandler","location":"room/com.ntt.skyway.room/-room/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onStreamUnpublishedHandler"]},{"name":"var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onStreamUnpublishedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onStreamUnpublishedHandler"]},{"name":"var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onSubscribedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onSubscribedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onSubscriptionListChangedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onSubscriptionListChangedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onSubscriptionListChangedHandler"]},{"name":"var onUnpublishedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onUnpublishedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","var onUnpublishedHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onUnpublishedHandler"]},{"name":"var onUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onUnsubscribedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","var onUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onUnsubscribedHandler"]}] +[{"name":"P2P()","description":"com.ntt.skyway.room.Room.Type.P2P","location":"room/com.ntt.skyway.room/-room/-type/-p2-p/index.html","searchKeys":["P2P","P2P()","com.ntt.skyway.room.Room.Type.P2P"]},{"name":"SFU()","description":"com.ntt.skyway.room.Room.Type.SFU","location":"room/com.ntt.skyway.room/-room/-type/-s-f-u/index.html","searchKeys":["SFU","SFU()","com.ntt.skyway.room.Room.Type.SFU"]},{"name":"abstract class LocalRoomMember : RoomMember","description":"com.ntt.skyway.room.member.LocalRoomMember","location":"room/com.ntt.skyway.room.member/-local-room-member/index.html","searchKeys":["LocalRoomMember","abstract class LocalRoomMember : RoomMember","com.ntt.skyway.room.member.LocalRoomMember"]},{"name":"abstract class Room","description":"com.ntt.skyway.room.Room","location":"room/com.ntt.skyway.room/-room/index.html","searchKeys":["Room","abstract class Room","com.ntt.skyway.room.Room"]},{"name":"abstract class RoomMember","description":"com.ntt.skyway.room.member.RoomMember","location":"room/com.ntt.skyway.room.member/-room-member/index.html","searchKeys":["RoomMember","abstract class RoomMember","com.ntt.skyway.room.member.RoomMember"]},{"name":"abstract suspend fun join(memberInit: RoomMember.Init): LocalRoomMember?","description":"com.ntt.skyway.room.Room.join","location":"room/com.ntt.skyway.room/-room/join.html","searchKeys":["join","abstract suspend fun join(memberInit: RoomMember.Init): LocalRoomMember?","com.ntt.skyway.room.Room.join"]},{"name":"abstract val type: Room.Type","description":"com.ntt.skyway.room.Room.type","location":"room/com.ntt.skyway.room/-room/type.html","searchKeys":["type","abstract val type: Room.Type","com.ntt.skyway.room.Room.type"]},{"name":"class LocalP2PRoomMember : LocalRoomMember","description":"com.ntt.skyway.room.p2p.LocalP2PRoomMember","location":"room/com.ntt.skyway.room.p2p/-local-p2-p-room-member/index.html","searchKeys":["LocalP2PRoomMember","class LocalP2PRoomMember : LocalRoomMember","com.ntt.skyway.room.p2p.LocalP2PRoomMember"]},{"name":"class LocalSFURoomMember : LocalRoomMember","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/index.html","searchKeys":["LocalSFURoomMember","class LocalSFURoomMember : LocalRoomMember","com.ntt.skyway.room.sfu.LocalSFURoomMember"]},{"name":"class P2PRoom : Room","description":"com.ntt.skyway.room.p2p.P2PRoom","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/index.html","searchKeys":["P2PRoom","class P2PRoom : Room","com.ntt.skyway.room.p2p.P2PRoom"]},{"name":"class RoomPublication","description":"com.ntt.skyway.room.RoomPublication","location":"room/com.ntt.skyway.room/-room-publication/index.html","searchKeys":["RoomPublication","class RoomPublication","com.ntt.skyway.room.RoomPublication"]},{"name":"class RoomSubscription","description":"com.ntt.skyway.room.RoomSubscription","location":"room/com.ntt.skyway.room/-room-subscription/index.html","searchKeys":["RoomSubscription","class RoomSubscription","com.ntt.skyway.room.RoomSubscription"]},{"name":"class SFURoom : Room","description":"com.ntt.skyway.room.sfu.SFURoom","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/index.html","searchKeys":["SFURoom","class SFURoom : Room","com.ntt.skyway.room.sfu.SFURoom"]},{"name":"data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int)","description":"com.ntt.skyway.room.member.RoomMember.Init","location":"room/com.ntt.skyway.room.member/-room-member/-init/index.html","searchKeys":["Init","data class Init(name: String?, metadata: String?, keepAliveIntervalSec: Int)","com.ntt.skyway.room.member.RoomMember.Init"]},{"name":"data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?, maxSubscribers: Int)","description":"com.ntt.skyway.room.RoomPublication.Options","location":"room/com.ntt.skyway.room/-room-publication/-options/index.html","searchKeys":["Options","data class Options(metadata: String?, codecCapabilities: List?, encodings: List?, isEnabled: Boolean?, maxSubscribers: Int)","com.ntt.skyway.room.RoomPublication.Options"]},{"name":"data class Options(preferredEncodingId: String?)","description":"com.ntt.skyway.room.RoomSubscription.Options","location":"room/com.ntt.skyway.room/-room-subscription/-options/index.html","searchKeys":["Options","data class Options(preferredEncodingId: String?)","com.ntt.skyway.room.RoomSubscription.Options"]},{"name":"enum Type : Enum ","description":"com.ntt.skyway.room.Room.Type","location":"room/com.ntt.skyway.room/-room/-type/index.html","searchKeys":["Type","enum Type : Enum ","com.ntt.skyway.room.Room.Type"]},{"name":"fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30)","description":"com.ntt.skyway.room.member.RoomMember.Init.Init","location":"room/com.ntt.skyway.room.member/-room-member/-init/-init.html","searchKeys":["Init","fun Init(name: String? = null, metadata: String? = null, keepAliveIntervalSec: Int = 30)","com.ntt.skyway.room.member.RoomMember.Init.Init"]},{"name":"fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null, maxSubscribers: Int = 10)","description":"com.ntt.skyway.room.RoomPublication.Options.Options","location":"room/com.ntt.skyway.room/-room-publication/-options/-options.html","searchKeys":["Options","fun Options(metadata: String? = null, codecCapabilities: List? = null, encodings: List? = null, isEnabled: Boolean? = null, maxSubscribers: Int = 10)","com.ntt.skyway.room.RoomPublication.Options.Options"]},{"name":"fun Options(preferredEncodingId: String? = null)","description":"com.ntt.skyway.room.RoomSubscription.Options.Options","location":"room/com.ntt.skyway.room/-room-subscription/-options/-options.html","searchKeys":["Options","fun Options(preferredEncodingId: String? = null)","com.ntt.skyway.room.RoomSubscription.Options.Options"]},{"name":"fun dispose()","description":"com.ntt.skyway.room.Room.dispose","location":"room/com.ntt.skyway.room/-room/dispose.html","searchKeys":["dispose","fun dispose()","com.ntt.skyway.room.Room.dispose"]},{"name":"fun getStats(): WebRTCStats?","description":"com.ntt.skyway.room.RoomSubscription.getStats","location":"room/com.ntt.skyway.room/-room-subscription/get-stats.html","searchKeys":["getStats","fun getStats(): WebRTCStats?","com.ntt.skyway.room.RoomSubscription.getStats"]},{"name":"fun getStats(remoteMemberId: String): WebRTCStats?","description":"com.ntt.skyway.room.RoomPublication.getStats","location":"room/com.ntt.skyway.room/-room-publication/get-stats.html","searchKeys":["getStats","fun getStats(remoteMemberId: String): WebRTCStats?","com.ntt.skyway.room.RoomPublication.getStats"]},{"name":"fun replaceStream(stream: LocalStream): Boolean","description":"com.ntt.skyway.room.RoomPublication.replaceStream","location":"room/com.ntt.skyway.room/-room-publication/replace-stream.html","searchKeys":["replaceStream","fun replaceStream(stream: LocalStream): Boolean","com.ntt.skyway.room.RoomPublication.replaceStream"]},{"name":"fun updateEncodings(encodings: List)","description":"com.ntt.skyway.room.RoomPublication.updateEncodings","location":"room/com.ntt.skyway.room/-room-publication/update-encodings.html","searchKeys":["updateEncodings","fun updateEncodings(encodings: List)","com.ntt.skyway.room.RoomPublication.updateEncodings"]},{"name":"object Companion","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.room.p2p.P2PRoom.Companion"]},{"name":"object Companion","description":"com.ntt.skyway.room.sfu.SFURoom.Companion","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/index.html","searchKeys":["Companion","object Companion","com.ntt.skyway.room.sfu.SFURoom.Companion"]},{"name":"open class RemoteRoomMember : RoomMember","description":"com.ntt.skyway.room.member.RemoteRoomMember","location":"room/com.ntt.skyway.room.member/-remote-room-member/index.html","searchKeys":["RemoteRoomMember","open class RemoteRoomMember : RoomMember","com.ntt.skyway.room.member.RemoteRoomMember"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.RoomPublication.equals","location":"room/com.ntt.skyway.room/-room-publication/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.RoomPublication.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.RoomSubscription.equals","location":"room/com.ntt.skyway.room/-room-subscription/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.RoomSubscription.equals"]},{"name":"open operator override fun equals(other: Any?): Boolean","description":"com.ntt.skyway.room.member.RoomMember.equals","location":"room/com.ntt.skyway.room.member/-room-member/equals.html","searchKeys":["equals","open operator override fun equals(other: Any?): Boolean","com.ntt.skyway.room.member.RoomMember.equals"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.RoomPublication.hashCode","location":"room/com.ntt.skyway.room/-room-publication/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.RoomPublication.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.RoomSubscription.hashCode","location":"room/com.ntt.skyway.room/-room-subscription/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.RoomSubscription.hashCode"]},{"name":"open override fun hashCode(): Int","description":"com.ntt.skyway.room.member.RoomMember.hashCode","location":"room/com.ntt.skyway.room.member/-room-member/hash-code.html","searchKeys":["hashCode","open override fun hashCode(): Int","com.ntt.skyway.room.member.RoomMember.hashCode"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.room.member.LocalRoomMember.side","location":"room/com.ntt.skyway.room.member/-local-room-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.room.member.LocalRoomMember.side"]},{"name":"open override val side: Member.Side","description":"com.ntt.skyway.room.member.RemoteRoomMember.side","location":"room/com.ntt.skyway.room.member/-remote-room-member/side.html","searchKeys":["side","open override val side: Member.Side","com.ntt.skyway.room.member.RemoteRoomMember.side"]},{"name":"open override val type: Room.Type","description":"com.ntt.skyway.room.p2p.P2PRoom.type","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/type.html","searchKeys":["type","open override val type: Room.Type","com.ntt.skyway.room.p2p.P2PRoom.type"]},{"name":"open override val type: Room.Type","description":"com.ntt.skyway.room.sfu.SFURoom.type","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/type.html","searchKeys":["type","open override val type: Room.Type","com.ntt.skyway.room.sfu.SFURoom.type"]},{"name":"open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?","description":"com.ntt.skyway.room.member.LocalRoomMember.publish","location":"room/com.ntt.skyway.room.member/-local-room-member/publish.html","searchKeys":["publish","open suspend fun publish(localStream: LocalStream, options: RoomPublication.Options? = null): RoomPublication?","com.ntt.skyway.room.member.LocalRoomMember.publish"]},{"name":"open suspend fun unpublish(publication: RoomPublication): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unpublish","location":"room/com.ntt.skyway.room.member/-local-room-member/unpublish.html","searchKeys":["unpublish","open suspend fun unpublish(publication: RoomPublication): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unpublish"]},{"name":"open suspend override fun join(memberInit: RoomMember.Init): LocalP2PRoomMember?","description":"com.ntt.skyway.room.p2p.P2PRoom.join","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/join.html","searchKeys":["join","open suspend override fun join(memberInit: RoomMember.Init): LocalP2PRoomMember?","com.ntt.skyway.room.p2p.P2PRoom.join"]},{"name":"open suspend override fun join(memberInit: RoomMember.Init): LocalSFURoomMember?","description":"com.ntt.skyway.room.sfu.SFURoom.join","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/join.html","searchKeys":["join","open suspend override fun join(memberInit: RoomMember.Init): LocalSFURoomMember?","com.ntt.skyway.room.sfu.SFURoom.join"]},{"name":"open suspend override fun publish(localStream: LocalStream, options: RoomPublication.Options?): RoomPublication?","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember.publish","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/publish.html","searchKeys":["publish","open suspend override fun publish(localStream: LocalStream, options: RoomPublication.Options?): RoomPublication?","com.ntt.skyway.room.sfu.LocalSFURoomMember.publish"]},{"name":"open suspend override fun unpublish(publication: RoomPublication): Boolean","description":"com.ntt.skyway.room.sfu.LocalSFURoomMember.unpublish","location":"room/com.ntt.skyway.room.sfu/-local-s-f-u-room-member/unpublish.html","searchKeys":["unpublish","open suspend override fun unpublish(publication: RoomPublication): Boolean","com.ntt.skyway.room.sfu.LocalSFURoomMember.unpublish"]},{"name":"open val side: Member.Side","description":"com.ntt.skyway.room.member.RoomMember.side","location":"room/com.ntt.skyway.room.member/-room-member/side.html","searchKeys":["side","open val side: Member.Side","com.ntt.skyway.room.member.RoomMember.side"]},{"name":"suspend fun cancel(): Boolean","description":"com.ntt.skyway.room.RoomPublication.cancel","location":"room/com.ntt.skyway.room/-room-publication/cancel.html","searchKeys":["cancel","suspend fun cancel(): Boolean","com.ntt.skyway.room.RoomPublication.cancel"]},{"name":"suspend fun cancel(): Boolean","description":"com.ntt.skyway.room.RoomSubscription.cancel","location":"room/com.ntt.skyway.room/-room-subscription/cancel.html","searchKeys":["cancel","suspend fun cancel(): Boolean","com.ntt.skyway.room.RoomSubscription.cancel"]},{"name":"suspend fun changePreferredEncoding(preferredEncodingId: String)","description":"com.ntt.skyway.room.RoomSubscription.changePreferredEncoding","location":"room/com.ntt.skyway.room/-room-subscription/change-preferred-encoding.html","searchKeys":["changePreferredEncoding","suspend fun changePreferredEncoding(preferredEncodingId: String)","com.ntt.skyway.room.RoomSubscription.changePreferredEncoding"]},{"name":"suspend fun close(): Boolean","description":"com.ntt.skyway.room.Room.close","location":"room/com.ntt.skyway.room/-room/close.html","searchKeys":["close","suspend fun close(): Boolean","com.ntt.skyway.room.Room.close"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.create","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.create"]},{"name":"suspend fun create(name: String? = null, metadata: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.create","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/create.html","searchKeys":["create","suspend fun create(name: String? = null, metadata: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.create"]},{"name":"suspend fun disable(): Boolean","description":"com.ntt.skyway.room.RoomPublication.disable","location":"room/com.ntt.skyway.room/-room-publication/disable.html","searchKeys":["disable","suspend fun disable(): Boolean","com.ntt.skyway.room.RoomPublication.disable"]},{"name":"suspend fun enable(): Boolean","description":"com.ntt.skyway.room.RoomPublication.enable","location":"room/com.ntt.skyway.room/-room-publication/enable.html","searchKeys":["enable","suspend fun enable(): Boolean","com.ntt.skyway.room.RoomPublication.enable"]},{"name":"suspend fun find(name: String? = null, id: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.find","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.find"]},{"name":"suspend fun find(name: String? = null, id: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.find","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/find.html","searchKeys":["find","suspend fun find(name: String? = null, id: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.find"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): P2PRoom?","description":"com.ntt.skyway.room.p2p.P2PRoom.Companion.findOrCreate","location":"room/com.ntt.skyway.room.p2p/-p2-p-room/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): P2PRoom?","com.ntt.skyway.room.p2p.P2PRoom.Companion.findOrCreate"]},{"name":"suspend fun findOrCreate(name: String? = null, metadata: String? = null): SFURoom?","description":"com.ntt.skyway.room.sfu.SFURoom.Companion.findOrCreate","location":"room/com.ntt.skyway.room.sfu/-s-f-u-room/-companion/find-or-create.html","searchKeys":["findOrCreate","suspend fun findOrCreate(name: String? = null, metadata: String? = null): SFURoom?","com.ntt.skyway.room.sfu.SFURoom.Companion.findOrCreate"]},{"name":"suspend fun leave(): Boolean","description":"com.ntt.skyway.room.member.RoomMember.leave","location":"room/com.ntt.skyway.room.member/-room-member/leave.html","searchKeys":["leave","suspend fun leave(): Boolean","com.ntt.skyway.room.member.RoomMember.leave"]},{"name":"suspend fun leave(member: RoomMember): Boolean","description":"com.ntt.skyway.room.Room.leave","location":"room/com.ntt.skyway.room/-room/leave.html","searchKeys":["leave","suspend fun leave(member: RoomMember): Boolean","com.ntt.skyway.room.Room.leave"]},{"name":"suspend fun subscribe(publication: RoomPublication, options: RoomSubscription.Options? = null): RoomSubscription?","description":"com.ntt.skyway.room.member.LocalRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publication: RoomPublication, options: RoomSubscription.Options? = null): RoomSubscription?","com.ntt.skyway.room.member.LocalRoomMember.subscribe"]},{"name":"suspend fun subscribe(publicationId: String): Subscription?","description":"com.ntt.skyway.room.member.RemoteRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-remote-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String): Subscription?","com.ntt.skyway.room.member.RemoteRoomMember.subscribe"]},{"name":"suspend fun subscribe(publicationId: String, options: RoomSubscription.Options? = null): RoomSubscription?","description":"com.ntt.skyway.room.member.LocalRoomMember.subscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/subscribe.html","searchKeys":["subscribe","suspend fun subscribe(publicationId: String, options: RoomSubscription.Options? = null): RoomSubscription?","com.ntt.skyway.room.member.LocalRoomMember.subscribe"]},{"name":"suspend fun unsubscribe(subscription: Subscription): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscription: Subscription): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unsubscribe"]},{"name":"suspend fun unsubscribe(subscriptionId: String): Boolean","description":"com.ntt.skyway.room.member.LocalRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-local-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionId: String): Boolean","com.ntt.skyway.room.member.LocalRoomMember.unsubscribe"]},{"name":"suspend fun unsubscribe(subscriptionsId: String): Boolean","description":"com.ntt.skyway.room.member.RemoteRoomMember.unsubscribe","location":"room/com.ntt.skyway.room.member/-remote-room-member/unsubscribe.html","searchKeys":["unsubscribe","suspend fun unsubscribe(subscriptionsId: String): Boolean","com.ntt.skyway.room.member.RemoteRoomMember.unsubscribe"]},{"name":"suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.room.Room.updateMetadata","location":"room/com.ntt.skyway.room/-room/update-metadata.html","searchKeys":["updateMetadata","suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.room.Room.updateMetadata"]},{"name":"suspend fun updateMetadata(metadata: String): Boolean","description":"com.ntt.skyway.room.member.RoomMember.updateMetadata","location":"room/com.ntt.skyway.room.member/-room-member/update-metadata.html","searchKeys":["updateMetadata","suspend fun updateMetadata(metadata: String): Boolean","com.ntt.skyway.room.member.RoomMember.updateMetadata"]},{"name":"val codecCapabilities: List","description":"com.ntt.skyway.room.RoomPublication.codecCapabilities","location":"room/com.ntt.skyway.room/-room-publication/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List","com.ntt.skyway.room.RoomPublication.codecCapabilities"]},{"name":"val codecCapabilities: List? = null","description":"com.ntt.skyway.room.RoomPublication.Options.codecCapabilities","location":"room/com.ntt.skyway.room/-room-publication/-options/codec-capabilities.html","searchKeys":["codecCapabilities","val codecCapabilities: List? = null","com.ntt.skyway.room.RoomPublication.Options.codecCapabilities"]},{"name":"val contentType: Stream.ContentType","description":"com.ntt.skyway.room.RoomPublication.contentType","location":"room/com.ntt.skyway.room/-room-publication/content-type.html","searchKeys":["contentType","val contentType: Stream.ContentType","com.ntt.skyway.room.RoomPublication.contentType"]},{"name":"val contentType: Stream.ContentType","description":"com.ntt.skyway.room.RoomSubscription.contentType","location":"room/com.ntt.skyway.room/-room-subscription/content-type.html","searchKeys":["contentType","val contentType: Stream.ContentType","com.ntt.skyway.room.RoomSubscription.contentType"]},{"name":"val encodings: List","description":"com.ntt.skyway.room.RoomPublication.encodings","location":"room/com.ntt.skyway.room/-room-publication/encodings.html","searchKeys":["encodings","val encodings: List","com.ntt.skyway.room.RoomPublication.encodings"]},{"name":"val encodings: List? = null","description":"com.ntt.skyway.room.RoomPublication.Options.encodings","location":"room/com.ntt.skyway.room/-room-publication/-options/encodings.html","searchKeys":["encodings","val encodings: List? = null","com.ntt.skyway.room.RoomPublication.Options.encodings"]},{"name":"val id: String","description":"com.ntt.skyway.room.Room.id","location":"room/com.ntt.skyway.room/-room/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.Room.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.RoomPublication.id","location":"room/com.ntt.skyway.room/-room-publication/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.RoomPublication.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.RoomSubscription.id","location":"room/com.ntt.skyway.room/-room-subscription/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.RoomSubscription.id"]},{"name":"val id: String","description":"com.ntt.skyway.room.member.RoomMember.id","location":"room/com.ntt.skyway.room.member/-room-member/id.html","searchKeys":["id","val id: String","com.ntt.skyway.room.member.RoomMember.id"]},{"name":"val isEnabled: Boolean? = null","description":"com.ntt.skyway.room.RoomPublication.Options.isEnabled","location":"room/com.ntt.skyway.room/-room-publication/-options/is-enabled.html","searchKeys":["isEnabled","val isEnabled: Boolean? = null","com.ntt.skyway.room.RoomPublication.Options.isEnabled"]},{"name":"val keepAliveIntervalSec: Int = 30","description":"com.ntt.skyway.room.member.RoomMember.Init.keepAliveIntervalSec","location":"room/com.ntt.skyway.room.member/-room-member/-init/keep-alive-interval-sec.html","searchKeys":["keepAliveIntervalSec","val keepAliveIntervalSec: Int = 30","com.ntt.skyway.room.member.RoomMember.Init.keepAliveIntervalSec"]},{"name":"val localRoomMember: LocalRoomMember?","description":"com.ntt.skyway.room.Room.localRoomMember","location":"room/com.ntt.skyway.room/-room/local-room-member.html","searchKeys":["localRoomMember","val localRoomMember: LocalRoomMember?","com.ntt.skyway.room.Room.localRoomMember"]},{"name":"val maxSubscribers: Int = 10","description":"com.ntt.skyway.room.RoomPublication.Options.maxSubscribers","location":"room/com.ntt.skyway.room/-room-publication/-options/max-subscribers.html","searchKeys":["maxSubscribers","val maxSubscribers: Int = 10","com.ntt.skyway.room.RoomPublication.Options.maxSubscribers"]},{"name":"val members: Set","description":"com.ntt.skyway.room.Room.members","location":"room/com.ntt.skyway.room/-room/members.html","searchKeys":["members","val members: Set","com.ntt.skyway.room.Room.members"]},{"name":"val metadata: String","description":"com.ntt.skyway.room.RoomPublication.metadata","location":"room/com.ntt.skyway.room/-room-publication/metadata.html","searchKeys":["metadata","val metadata: String","com.ntt.skyway.room.RoomPublication.metadata"]},{"name":"val metadata: String?","description":"com.ntt.skyway.room.Room.metadata","location":"room/com.ntt.skyway.room/-room/metadata.html","searchKeys":["metadata","val metadata: String?","com.ntt.skyway.room.Room.metadata"]},{"name":"val metadata: String?","description":"com.ntt.skyway.room.member.RoomMember.metadata","location":"room/com.ntt.skyway.room.member/-room-member/metadata.html","searchKeys":["metadata","val metadata: String?","com.ntt.skyway.room.member.RoomMember.metadata"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.room.RoomPublication.Options.metadata","location":"room/com.ntt.skyway.room/-room-publication/-options/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.room.RoomPublication.Options.metadata"]},{"name":"val metadata: String? = null","description":"com.ntt.skyway.room.member.RoomMember.Init.metadata","location":"room/com.ntt.skyway.room.member/-room-member/-init/metadata.html","searchKeys":["metadata","val metadata: String? = null","com.ntt.skyway.room.member.RoomMember.Init.metadata"]},{"name":"val name: String?","description":"com.ntt.skyway.room.Room.name","location":"room/com.ntt.skyway.room/-room/name.html","searchKeys":["name","val name: String?","com.ntt.skyway.room.Room.name"]},{"name":"val name: String?","description":"com.ntt.skyway.room.member.RoomMember.name","location":"room/com.ntt.skyway.room.member/-room-member/name.html","searchKeys":["name","val name: String?","com.ntt.skyway.room.member.RoomMember.name"]},{"name":"val name: String? = null","description":"com.ntt.skyway.room.member.RoomMember.Init.name","location":"room/com.ntt.skyway.room.member/-room-member/-init/name.html","searchKeys":["name","val name: String? = null","com.ntt.skyway.room.member.RoomMember.Init.name"]},{"name":"val preferredEncodingId: String","description":"com.ntt.skyway.room.RoomSubscription.preferredEncodingId","location":"room/com.ntt.skyway.room/-room-subscription/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String","com.ntt.skyway.room.RoomSubscription.preferredEncodingId"]},{"name":"val preferredEncodingId: String? = null","description":"com.ntt.skyway.room.RoomSubscription.Options.preferredEncodingId","location":"room/com.ntt.skyway.room/-room-subscription/-options/preferred-encoding-id.html","searchKeys":["preferredEncodingId","val preferredEncodingId: String? = null","com.ntt.skyway.room.RoomSubscription.Options.preferredEncodingId"]},{"name":"val publication: RoomPublication","description":"com.ntt.skyway.room.RoomSubscription.publication","location":"room/com.ntt.skyway.room/-room-subscription/publication.html","searchKeys":["publication","val publication: RoomPublication","com.ntt.skyway.room.RoomSubscription.publication"]},{"name":"val publications: List","description":"com.ntt.skyway.room.member.RoomMember.publications","location":"room/com.ntt.skyway.room.member/-room-member/publications.html","searchKeys":["publications","val publications: List","com.ntt.skyway.room.member.RoomMember.publications"]},{"name":"val publications: Set","description":"com.ntt.skyway.room.Room.publications","location":"room/com.ntt.skyway.room/-room/publications.html","searchKeys":["publications","val publications: Set","com.ntt.skyway.room.Room.publications"]},{"name":"val publisher: RoomMember?","description":"com.ntt.skyway.room.RoomPublication.publisher","location":"room/com.ntt.skyway.room/-room-publication/publisher.html","searchKeys":["publisher","val publisher: RoomMember?","com.ntt.skyway.room.RoomPublication.publisher"]},{"name":"val room: Room","description":"com.ntt.skyway.room.RoomPublication.room","location":"room/com.ntt.skyway.room/-room-publication/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.RoomPublication.room"]},{"name":"val room: Room","description":"com.ntt.skyway.room.RoomSubscription.room","location":"room/com.ntt.skyway.room/-room-subscription/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.RoomSubscription.room"]},{"name":"val room: Room","description":"com.ntt.skyway.room.member.RoomMember.room","location":"room/com.ntt.skyway.room.member/-room-member/room.html","searchKeys":["room","val room: Room","com.ntt.skyway.room.member.RoomMember.room"]},{"name":"val state: Channel.State","description":"com.ntt.skyway.room.Room.state","location":"room/com.ntt.skyway.room/-room/state.html","searchKeys":["state","val state: Channel.State","com.ntt.skyway.room.Room.state"]},{"name":"val state: Member.State","description":"com.ntt.skyway.room.member.RoomMember.state","location":"room/com.ntt.skyway.room.member/-room-member/state.html","searchKeys":["state","val state: Member.State","com.ntt.skyway.room.member.RoomMember.state"]},{"name":"val state: Publication.State","description":"com.ntt.skyway.room.RoomPublication.state","location":"room/com.ntt.skyway.room/-room-publication/state.html","searchKeys":["state","val state: Publication.State","com.ntt.skyway.room.RoomPublication.state"]},{"name":"val state: Subscription.State","description":"com.ntt.skyway.room.RoomSubscription.state","location":"room/com.ntt.skyway.room/-room-subscription/state.html","searchKeys":["state","val state: Subscription.State","com.ntt.skyway.room.RoomSubscription.state"]},{"name":"val stream: RemoteStream?","description":"com.ntt.skyway.room.RoomSubscription.stream","location":"room/com.ntt.skyway.room/-room-subscription/stream.html","searchKeys":["stream","val stream: RemoteStream?","com.ntt.skyway.room.RoomSubscription.stream"]},{"name":"val stream: Stream?","description":"com.ntt.skyway.room.RoomPublication.stream","location":"room/com.ntt.skyway.room/-room-publication/stream.html","searchKeys":["stream","val stream: Stream?","com.ntt.skyway.room.RoomPublication.stream"]},{"name":"val subscriber: RoomMember?","description":"com.ntt.skyway.room.RoomSubscription.subscriber","location":"room/com.ntt.skyway.room/-room-subscription/subscriber.html","searchKeys":["subscriber","val subscriber: RoomMember?","com.ntt.skyway.room.RoomSubscription.subscriber"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.room.RoomPublication.subscriptions","location":"room/com.ntt.skyway.room/-room-publication/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.room.RoomPublication.subscriptions"]},{"name":"val subscriptions: List","description":"com.ntt.skyway.room.member.RoomMember.subscriptions","location":"room/com.ntt.skyway.room.member/-room-member/subscriptions.html","searchKeys":["subscriptions","val subscriptions: List","com.ntt.skyway.room.member.RoomMember.subscriptions"]},{"name":"val subscriptions: Set","description":"com.ntt.skyway.room.Room.subscriptions","location":"room/com.ntt.skyway.room/-room/subscriptions.html","searchKeys":["subscriptions","val subscriptions: Set","com.ntt.skyway.room.Room.subscriptions"]},{"name":"var onCanceledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomSubscription.onCanceledHandler","location":"room/com.ntt.skyway.room/-room-subscription/on-canceled-handler.html","searchKeys":["onCanceledHandler","var onCanceledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomSubscription.onCanceledHandler"]},{"name":"var onClosedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onClosedHandler","location":"room/com.ntt.skyway.room/-room/on-closed-handler.html","searchKeys":["onClosedHandler","var onClosedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onClosedHandler"]},{"name":"var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onConnectionStateChangedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onConnectionStateChangedHandler"]},{"name":"var onConnectionStateChangedHandler: (state: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomSubscription.onConnectionStateChangedHandler","location":"room/com.ntt.skyway.room/-room-subscription/on-connection-state-changed-handler.html","searchKeys":["onConnectionStateChangedHandler","var onConnectionStateChangedHandler: (state: String) -> Unit? = null","com.ntt.skyway.room.RoomSubscription.onConnectionStateChangedHandler"]},{"name":"var onDisabledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onDisabledHandler","location":"room/com.ntt.skyway.room/-room-publication/on-disabled-handler.html","searchKeys":["onDisabledHandler","var onDisabledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onDisabledHandler"]},{"name":"var onEnabledHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onEnabledHandler","location":"room/com.ntt.skyway.room/-room-publication/on-enabled-handler.html","searchKeys":["onEnabledHandler","var onEnabledHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onEnabledHandler"]},{"name":"var onErrorHandler: (Exception) -> Unit? = null","description":"com.ntt.skyway.room.Room.onErrorHandler","location":"room/com.ntt.skyway.room/-room/on-error-handler.html","searchKeys":["onErrorHandler","var onErrorHandler: (Exception) -> Unit? = null","com.ntt.skyway.room.Room.onErrorHandler"]},{"name":"var onLeftHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onLeftHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-left-handler.html","searchKeys":["onLeftHandler","var onLeftHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onLeftHandler"]},{"name":"var onMemberJoinedHandler: (member: RoomMember) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberJoinedHandler","location":"room/com.ntt.skyway.room/-room/on-member-joined-handler.html","searchKeys":["onMemberJoinedHandler","var onMemberJoinedHandler: (member: RoomMember) -> Unit? = null","com.ntt.skyway.room.Room.onMemberJoinedHandler"]},{"name":"var onMemberLeftHandler: (member: RoomMember) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberLeftHandler","location":"room/com.ntt.skyway.room/-room/on-member-left-handler.html","searchKeys":["onMemberLeftHandler","var onMemberLeftHandler: (member: RoomMember) -> Unit? = null","com.ntt.skyway.room.Room.onMemberLeftHandler"]},{"name":"var onMemberListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-member-list-changed-handler.html","searchKeys":["onMemberListChangedHandler","var onMemberListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onMemberListChangedHandler"]},{"name":"var onMemberMetadataUpdatedHandler: (member: RoomMember, metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMemberMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-member-metadata-updated-handler.html","searchKeys":["onMemberMetadataUpdatedHandler","var onMemberMetadataUpdatedHandler: (member: RoomMember, metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onMemberMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onMetadataUpdatedHandler"]},{"name":"var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onMetadataUpdatedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-metadata-updated-handler.html","searchKeys":["onMetadataUpdatedHandler","var onMetadataUpdatedHandler: (metadata: String) -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onMetadataUpdatedHandler"]},{"name":"var onPublicationDisabledHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationDisabledHandler","location":"room/com.ntt.skyway.room/-room/on-publication-disabled-handler.html","searchKeys":["onPublicationDisabledHandler","var onPublicationDisabledHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationDisabledHandler"]},{"name":"var onPublicationEnabledHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationEnabledHandler","location":"room/com.ntt.skyway.room/-room/on-publication-enabled-handler.html","searchKeys":["onPublicationEnabledHandler","var onPublicationEnabledHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationEnabledHandler"]},{"name":"var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onPublicationListChangedHandler"]},{"name":"var onPublicationListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onPublicationListChangedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-publication-list-changed-handler.html","searchKeys":["onPublicationListChangedHandler","var onPublicationListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onPublicationListChangedHandler"]},{"name":"var onPublicationMetadataUpdatedHandler: (publication: RoomPublication, metadata: String) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationMetadataUpdatedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-metadata-updated-handler.html","searchKeys":["onPublicationMetadataUpdatedHandler","var onPublicationMetadataUpdatedHandler: (publication: RoomPublication, metadata: String) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationMetadataUpdatedHandler"]},{"name":"var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationSubscribedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationSubscribedHandler"]},{"name":"var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onPublicationSubscribedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-publication-subscribed-handler.html","searchKeys":["onPublicationSubscribedHandler","var onPublicationSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onPublicationSubscribedHandler"]},{"name":"var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.Room.onPublicationUnsubscribedHandler","location":"room/com.ntt.skyway.room/-room/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.Room.onPublicationUnsubscribedHandler"]},{"name":"var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onPublicationUnsubscribedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-publication-unsubscribed-handler.html","searchKeys":["onPublicationUnsubscribedHandler","var onPublicationUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onPublicationUnsubscribedHandler"]},{"name":"var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onStreamPublishedHandler","location":"room/com.ntt.skyway.room/-room/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onStreamPublishedHandler"]},{"name":"var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onStreamPublishedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-stream-published-handler.html","searchKeys":["onStreamPublishedHandler","var onStreamPublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onStreamPublishedHandler"]},{"name":"var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.Room.onStreamUnpublishedHandler","location":"room/com.ntt.skyway.room/-room/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.Room.onStreamUnpublishedHandler"]},{"name":"var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","description":"com.ntt.skyway.room.member.LocalRoomMember.onStreamUnpublishedHandler","location":"room/com.ntt.skyway.room.member/-local-room-member/on-stream-unpublished-handler.html","searchKeys":["onStreamUnpublishedHandler","var onStreamUnpublishedHandler: (publication: RoomPublication) -> Unit? = null","com.ntt.skyway.room.member.LocalRoomMember.onStreamUnpublishedHandler"]},{"name":"var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onSubscribedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-subscribed-handler.html","searchKeys":["onSubscribedHandler","var onSubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onSubscribedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.Room.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room/-room/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.Room.onSubscriptionListChangedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onSubscriptionListChangedHandler"]},{"name":"var onSubscriptionListChangedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.member.RoomMember.onSubscriptionListChangedHandler","location":"room/com.ntt.skyway.room.member/-room-member/on-subscription-list-changed-handler.html","searchKeys":["onSubscriptionListChangedHandler","var onSubscriptionListChangedHandler: () -> Unit? = null","com.ntt.skyway.room.member.RoomMember.onSubscriptionListChangedHandler"]},{"name":"var onUnpublishedHandler: () -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onUnpublishedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-unpublished-handler.html","searchKeys":["onUnpublishedHandler","var onUnpublishedHandler: () -> Unit? = null","com.ntt.skyway.room.RoomPublication.onUnpublishedHandler"]},{"name":"var onUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","description":"com.ntt.skyway.room.RoomPublication.onUnsubscribedHandler","location":"room/com.ntt.skyway.room/-room-publication/on-unsubscribed-handler.html","searchKeys":["onUnsubscribedHandler","var onUnsubscribedHandler: (subscription: RoomSubscription) -> Unit? = null","com.ntt.skyway.room.RoomPublication.onUnsubscribedHandler"]}] diff --git a/docs/sfubot/sfubot/com.ntt.skyway.plugin.sfuBot/-s-f-u-bot/index.html b/docs/sfubot/sfubot/com.ntt.skyway.plugin.sfuBot/-s-f-u-bot/index.html index 1b97316..8e823c8 100644 --- a/docs/sfubot/sfubot/com.ntt.skyway.plugin.sfuBot/-s-f-u-bot/index.html +++ b/docs/sfubot/sfubot/com.ntt.skyway.plugin.sfuBot/-s-f-u-bot/index.html @@ -166,7 +166,7 @@

Properties

-
open override val metadata: String
+
open override val metadata: String?
@@ -181,7 +181,7 @@

Properties

-
open override val name: String
+
open override val name: String?
diff --git a/project/skyway_android_sdk/authtoken/src/main/java/com/ntt/skyway/authtoken/AuthTokenBuilder.kt b/project/skyway_android_sdk/authtoken/src/main/java/com/ntt/skyway/authtoken/AuthTokenBuilder.kt index 32cec38..928d23d 100644 --- a/project/skyway_android_sdk/authtoken/src/main/java/com/ntt/skyway/authtoken/AuthTokenBuilder.kt +++ b/project/skyway_android_sdk/authtoken/src/main/java/com/ntt/skyway/authtoken/AuthTokenBuilder.kt @@ -22,6 +22,7 @@ object AuthTokenBuilder { app: { id: "${app_id}", turn: true, + analytics: true, actions: ["read"], channels: [ { diff --git a/project/skyway_android_sdk/build.gradle b/project/skyway_android_sdk/build.gradle index 059f0ae..f3c573e 100644 --- a/project/skyway_android_sdk/build.gradle +++ b/project/skyway_android_sdk/build.gradle @@ -11,7 +11,7 @@ buildscript { } } -ext.SkyWayVer = "1.6.5" +ext.SkyWayVer = "2.0.0" ext.output_aar_dir = "outputs-aar" task clean(type: Delete) { diff --git a/project/skyway_android_sdk/core/src/androidTest/java/com/ntt/skyway/core/channel/ChannelTest.kt b/project/skyway_android_sdk/core/src/androidTest/java/com/ntt/skyway/core/channel/ChannelTest.kt index 655ea35..cbb25ca 100644 --- a/project/skyway_android_sdk/core/src/androidTest/java/com/ntt/skyway/core/channel/ChannelTest.kt +++ b/project/skyway_android_sdk/core/src/androidTest/java/com/ntt/skyway/core/channel/ChannelTest.kt @@ -279,4 +279,26 @@ class ChannelTest { aliceChannel?.dispose() assertTrue(alice?.metadata != "metadata") } + + @Test + fun channel_Member_NameAndMetadataNullable() = runBlocking { + val aliceChannel = Channel.create() + assertNotNull(aliceChannel) + assertTrue(aliceChannel?.name == null) + assertTrue(aliceChannel?.metadata == null) + val bobChannel = Channel.find(id = aliceChannel?.id) + assertNotNull(bobChannel) + val alice = aliceChannel?.join(Member.Init()) + assertNotNull(alice) + assertTrue(alice?.name == null) + assertTrue(alice?.metadata == null) + val bob = bobChannel?.join(Member.Init()) + assertNotNull(bob) + assertTrue(bob?.name == null) + assertTrue(bob?.metadata == null) + val bobRemoteMember = aliceChannel?.members?.firstOrNull { it.id != alice?.id } + assertNotNull(bobRemoteMember) + assertTrue(bobRemoteMember?.name == null) + assertTrue(bobRemoteMember?.metadata == null) + } } diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/channel/channel_bridge.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/channel/channel_bridge.cpp index 301b817..153e4f3 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/channel/channel_bridge.cpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/channel/channel_bridge.cpp @@ -156,7 +156,7 @@ jstring ChannelBridge::FindOrCreate(JNIEnv* env, jobject j_this, jstring j_chann jstring ChannelBridge::Metadata(JNIEnv* env, jobject j_this, jlong channel) { auto metadata = ((Channel*)channel)->Metadata(); - return env->NewStringUTF(metadata->c_str()); + return metadata ? env->NewStringUTF(metadata->c_str()) : env->NewStringUTF(""); } jstring ChannelBridge::State(JNIEnv* env, jobject j_this, jlong channel) { @@ -196,8 +196,21 @@ jstring ChannelBridge::Join(JNIEnv* env, jobject j_this, jlong channel, jstring member_init.type = skyway::model::MemberType::kBot; } member_init.subtype = JStringToStdString(env, j_subtype); - member_init.name = JStringToStdString(env, j_name); - member_init.metadata = JStringToStdString(env, j_metadata); + + auto name = JStringToStdString(env, j_name); + if(!name.empty()) { + member_init.name = name; + } else { + member_init.name = boost::none; + } + + auto metadata = JStringToStdString(env, j_metadata); + if(!metadata.empty()) { + member_init.metadata = metadata; + } else { + member_init.metadata = boost::none; + } + if(keepalive_interval_sec == 0) { member_init.keepalive_interval_sec = boost::none; } else { diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/local_person_bridge.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/local_person_bridge.cpp index 28aff75..6218443 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/local_person_bridge.cpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/local_person_bridge.cpp @@ -94,7 +94,7 @@ void LocalPersonBridge::AddEventListener(JNIEnv* env, jobject j_this, jstring j_ jstring LocalPersonBridge::Metadata(JNIEnv* env, jobject j_this, jlong member) { auto metadata = ((LocalPerson*)member)->Metadata(); - return env->NewStringUTF(metadata->c_str()); + return metadata ? env->NewStringUTF(metadata->c_str()) : env->NewStringUTF(""); } jstring LocalPersonBridge::State(JNIEnv* env, jobject j_this, jlong member) { diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/remote_member_bridge.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/remote_member_bridge.cpp index 93395b7..8a50d1e 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/remote_member_bridge.cpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/channel/member/remote_member_bridge.cpp @@ -62,7 +62,7 @@ void RemoteMemberBridge::AddEventListener(JNIEnv* env, jobject j_this, jstring j jstring RemoteMemberBridge::Metadata(JNIEnv* env, jobject j_this, jlong member) { auto metadata = ((RemoteMember*)member)->Metadata(); - return env->NewStringUTF(metadata->c_str()); + return metadata ? env->NewStringUTF(metadata->c_str()) : env->NewStringUTF(""); } jstring RemoteMemberBridge::State(JNIEnv* env, jobject j_this, jlong member) { diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/context/context_bridge.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/context/context_bridge.cpp index add6ccb..9ac7c66 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/context/context_bridge.cpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/context/context_bridge.cpp @@ -18,6 +18,7 @@ #include "core/util/register_methods_helper.hpp" #include "core/util/jstring_to_string.hpp" #include "core/channel/channel_util.hpp" +#include "core/platform/platform_info_delegator.hpp" namespace skyway_android { namespace core { @@ -78,6 +79,7 @@ jboolean ContextBridge::Setup(JNIEnv* env, jobject j_this, jstring j_auth_token, auto http_ptr = http.get(); auto ws_factory = std::make_unique(j_ws_factory); + auto platform_info = std::make_unique(); auto logger = std::make_unique(j_logger); auto listener = new ContextEventListener(j_this); auto auth_token_manager_listener = new AuthTokenManagerEventListener(j_this); @@ -89,7 +91,7 @@ jboolean ContextBridge::Setup(JNIEnv* env, jobject j_this, jstring j_auth_token, ApplyContextOptions(options, options_json); options.token.listener = auth_token_manager_listener; - auto setup_result = Context::Setup(auth_token, std::move(http), std::move(ws_factory), std::move(logger), listener, options); + auto setup_result = Context::Setup(auth_token, std::move(http), std::move(ws_factory), std::move(platform_info), std::move(logger), listener, options); if (!setup_result) { return false; @@ -198,6 +200,15 @@ void ContextBridge::ApplyContextOptions(ContextOptions& options, nlohmann::json& options.signaling.secure = signaling["secure"]; } } + if(options_json.contains("analytics")) { + auto analytics = options_json["analytics"]; + if(analytics.contains("domain")) { + options.analytics.domain = analytics["domain"]; + } + if(analytics.contains("secure")) { + options.analytics.secure = analytics["secure"]; + } + } if(options_json.contains("rtcConfig")) { auto rtc_config = options_json["rtcConfig"]; if(rtc_config.contains("timeout")) { diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.cpp index aaf7bcc..c3cef97 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.cpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.cpp @@ -102,13 +102,40 @@ std::future WebSocketClient::Connect(const std::string& url, const std::st auto env = core::ContextBridge::AttachCurrentThread(); auto j_url = env->NewStringUTF(url.c_str()); - auto j_sub_protocol = env->NewStringUTF(sub_protocol.c_str()); - auto signature = "(Ljava/lang/String;Ljava/lang/String;J)V"; + auto j_sub_protocols = _CreateJSubprotocols(env, std::vector{sub_protocol}); + auto j_headers = _CreateJHeaders(env, std::unordered_map{}); + auto signature = "(Ljava/lang/String;[Ljava/lang/String;[Lcom/ntt/skyway/core/network/WebSocketHeader;J)V"; jlong ptr = NativeToJlong(this); - CallJavaMethod(env, this->_j_ws, "connect", signature, j_url, j_sub_protocol, ptr); + CallJavaMethod(env, this->_j_ws, "connect", signature, j_url, j_sub_protocols, j_headers, ptr); + env->DeleteLocalRef(j_sub_protocols); + env->DeleteLocalRef(j_headers); return _connect_promise.get_future(); } + +std::future WebSocketClient::Connect(const std::string& url, + const std::vector& sub_protocols, + const std::unordered_map& headers) { + std::unique_lock lk(_connect_mtx); + _is_connecting = true; + _is_closed = false; + + std::promise p; + _connect_promise = std::move(p); + + auto env = core::ContextBridge::AttachCurrentThread(); + auto j_url = env->NewStringUTF(url.c_str()); + auto j_sub_protocols = _CreateJSubprotocols(env, sub_protocols); + auto j_headers = _CreateJHeaders(env, headers); + auto signature = "(Ljava/lang/String;[Ljava/lang/String;[Lcom/ntt/skyway/core/network/WebSocketHeader;J)V"; + jlong ptr = NativeToJlong(this); + CallJavaMethod(env, this->_j_ws, "connect", signature, j_url, j_sub_protocols, j_headers, ptr); + env->DeleteLocalRef(j_sub_protocols); + env->DeleteLocalRef(j_headers); + return _connect_promise.get_future(); + +} + std::future WebSocketClient::Send(const std::string& message) { auto env = core::ContextBridge::AttachCurrentThread(); auto j_message = env->NewStringUTF(message.c_str()); @@ -200,16 +227,19 @@ void WebSocketClient::_OnClose(int code) { } void WebSocketClient::_OnError(int code) { + if (_is_closing) { + _close_promise.set_value(false); + SKW_ERROR("Websocket error occurred when closing."); + } _is_closed = true; if (_is_connecting) { _connect_promise.set_value(false); - _is_connecting = false; - return; + SKW_ERROR("Websocket error occurred when connecting."); } - if (_is_closing) { - _close_promise.set_value(false); + if (_is_closing || _is_connecting){ _is_closing = false; + _is_connecting = false; return; } @@ -221,5 +251,34 @@ void WebSocketClient::_OnError(int code) { _workers.emplace_back(std::move(worker)); } + +jobjectArray WebSocketClient::_CreateJSubprotocols(JNIEnv* env, const std::vector& sub_protocols) { + auto j_str_class = env->FindClass("java/lang/String"); + auto j_sub_protocols = env->NewObjectArray(sub_protocols.size(), j_str_class, env->NewStringUTF("")); + for (int i = 0; i < sub_protocols.size(); i++) { + auto j_sub_protocol = env->NewStringUTF(sub_protocols[i].c_str()); + env->SetObjectArrayElement(j_sub_protocols, i, j_sub_protocol); + } + return j_sub_protocols; +} + +jobjectArray WebSocketClient::_CreateJHeaders(JNIEnv* env, const std::unordered_map& headers){ + auto header_array_signature = "(I)[Lcom/ntt/skyway/core/network/WebSocketHeader;"; + auto j_ws_class = env->GetObjectClass(_j_ws); + auto j_create_header_array = env->GetMethodID(j_ws_class, "createHeaderArray", header_array_signature); + jobjectArray j_headers = (jobjectArray)(env->CallObjectMethod(_j_ws, j_create_header_array, headers.size())); + auto header_signature = "(Ljava/lang/String;Ljava/lang/String;)Lcom/ntt/skyway/core/network/WebSocketHeader;"; + auto j_create_header = env->GetMethodID(j_ws_class, "createHeader", header_signature); + int index = 0; + for (auto itr = headers.begin(); itr != headers.end(); itr++) { + auto j_header_key = env->NewStringUTF(itr->first.c_str()); + auto j_header_val = env->NewStringUTF(itr->second.c_str()); + auto j_header = env->CallObjectMethod(_j_ws, j_create_header, j_header_key, j_header_val); + env->SetObjectArrayElement((jobjectArray)j_headers, index, j_header); + index++; + } + return j_headers; +} + } // namespace network } // namespace skyway_android diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.hpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.hpp index b98f196..0e90b64 100644 --- a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.hpp +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/network/websocket_client.hpp @@ -11,6 +11,7 @@ #include #include #include +#include #include @@ -36,6 +37,9 @@ class WebSocketClient : public skyway::network::interface::WebSocketClient { void RegisterListener(Listener* listener) override; std::future Connect(const std::string& url, const std::string& sub_protocol) override; + std::future Connect(const std::string& url, + const std::vector& sub_protocols, + const std::unordered_map& headers) override; std::future Send(const std::string& message) override; std::future Close(const int code, const std::string& reason) override; std::future Destroy() override; @@ -48,6 +52,8 @@ class WebSocketClient : public skyway::network::interface::WebSocketClient { Listener* _listener; private: + jobjectArray _CreateJSubprotocols(JNIEnv* env, const std::vector& sub_protocols); + jobjectArray _CreateJHeaders(JNIEnv* env, const std::unordered_map& headers); jobject _j_ws; bool _is_connecting; std::promise _connect_promise; diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.cpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.cpp new file mode 100644 index 0000000..b186c54 --- /dev/null +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.cpp @@ -0,0 +1,45 @@ +// +// platform_info_delegator.cpp +// skyway_android +// +// Copyright © 2024 NTT Communications. All rights reserved. +// + +#include "core/platform/platform_info_delegator.hpp" +#include "core/context/context_bridge.hpp" +#include "core/util/jstring_to_string.hpp" + + +namespace skyway_android { +namespace core { +namespace platform { + +std::string PlatformInfoDelegator::GetPlatform() const { + return "android"; +} + +std::string PlatformInfoDelegator::GetOsInfo() const { + auto env = ContextBridge::AttachCurrentThread(); + jclass build_class = env->FindClass("android/os/Build$VERSION"); + jfieldID release_id = env->GetStaticFieldID(build_class, "RELEASE", "Ljava/lang/String;"); + jstring release_str = (jstring)env->GetStaticObjectField(build_class, release_id); + auto build_version = JStringToStdString(env, release_str); + env->DeleteLocalRef(release_str); + ContextBridge::DetachCurrentThread(); + return "Android " + build_version; +} + +std::string PlatformInfoDelegator::GetModelName() const { + auto env = ContextBridge::AttachCurrentThread(); + jclass build_class = env->FindClass("android/os/Build"); + jfieldID model_id = env->GetStaticFieldID(build_class, "MODEL", "Ljava/lang/String;"); + jstring model_str = (jstring)env->GetStaticObjectField(build_class, model_id); + auto device_name = JStringToStdString(env, model_str); + env->DeleteLocalRef(model_str); + ContextBridge::DetachCurrentThread(); + return device_name; +} + +} // namespace platform +} // namespace core +} // namespace skyway_android diff --git a/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.hpp b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.hpp new file mode 100644 index 0000000..9148961 --- /dev/null +++ b/project/skyway_android_sdk/core/src/main/cpp/skyway_android/core/platform/platform_info_delegator.hpp @@ -0,0 +1,31 @@ +// +// platform_info_delegator.hpp +// skyway_android +// +// Copyright © 2024 NTT Communications. All rights reserved. +// + +#ifndef SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_HPP +#define SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_HPP + +#include "skyway/platform/interface/platform_info_delegator.hpp" + +namespace skyway_android { +namespace core { +namespace platform { + +class PlatformInfoDelegator : public skyway::platform::interface::PlatformInfoDelegator{ +public: + std::string GetPlatform() const override; + + std::string GetOsInfo() const override; + + std::string GetModelName() const override; +protected: +}; + +} // namespace platform +} // namespace core +} // namespace skyway_android + +#endif //SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_HPP diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/SkyWayContext.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/SkyWayContext.kt index 8d117e2..db86cfc 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/SkyWayContext.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/SkyWayContext.kt @@ -43,6 +43,7 @@ object SkyWayContext { val rtcApi: RtcApi? = null, val iceParams: IceParams? = null, val signaling: Signaling? = null, + val analytics: Analytics? = null, val rtcConfig: RtcConfig? = null, val sfu: Sfu? = null, val token: Token? = null, @@ -80,6 +81,15 @@ object SkyWayContext { } } + data class Analytics( + val domain: String? = null, + val secure: Boolean? = null + ) { + internal fun toJson(): String { + return Gson().toJson(this) + } + } + /** * TURNの利用に関する設定。TURN_ONLYにすると必ずTURNの利用を試みます。 */ diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Channel.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Channel.kt index 64cec5f..e8719ad 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Channel.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Channel.kt @@ -62,12 +62,12 @@ interface Channel { /** * このChannelの名前。 */ - val name: String + val name: String? /** * このChannelのMetadata。 */ - val metadata: String + val metadata: String? /** * このChannelの状態。 @@ -166,6 +166,7 @@ interface Channel { /** * このChannel内のPublicationがSubscribeされた時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ var onPublicationSubscribedHandler: ((subscription: Subscription) -> Unit)? diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/ChannelImpl.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/ChannelImpl.kt index 3e96d7b..313433d 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/ChannelImpl.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/ChannelImpl.kt @@ -14,7 +14,7 @@ import kotlinx.coroutines.launch import kotlinx.coroutines.withContext class ChannelImpl internal constructor( - override val id: String, override val name: String, val nativePointer: Long + override val id: String, override val name: String?, val nativePointer: Long ) : Channel { companion object { @JvmStatic @@ -60,8 +60,8 @@ class ChannelImpl internal constructor( ): String? } - override val metadata: String - get() = nativeMetadata(nativePointer) + override val metadata: String? + get() = nativeMetadata(nativePointer).takeUnless { it.isBlank() } override val state: Channel.State get() = Channel.State.fromString(nativeState(nativePointer)) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Factory.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Factory.kt index b734387..e50d1a4 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Factory.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Factory.kt @@ -20,7 +20,7 @@ internal class Factory(private val channel: ChannelImpl) { val dto = Gson().fromJson(channelJson, JsonObject::class.java) val channel = ChannelImpl( id = dto.get("id").asString, - name = dto.get("name").asString, + name = dto.get("name").asString.takeUnless { it.isBlank() }, nativePointer = dto.get("nativePointer").asLong ) @@ -55,7 +55,7 @@ internal class Factory(private val channel: ChannelImpl) { Member.Dto( channel = channel, id = dto.get("id").asString, - name = dto.get("name").asString, + name = dto.get("name").asString.takeUnless { it.isBlank() }, nativePointer = dto.get("nativePointer").asLong, ), repository = channel.repository @@ -67,7 +67,7 @@ internal class Factory(private val channel: ChannelImpl) { val memberDto = Member.Dto( channel = channel, id = dto.get("id").asString, - name = dto.get("name").asString, + name = dto.get("name").asString.takeUnless { it.isBlank() }, nativePointer = dto.get("nativePointer").asLong, ) val subtype = dto.get("subtype").asString diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Publication.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Publication.kt index 6ffba8d..4498c0a 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Publication.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Publication.kt @@ -6,7 +6,6 @@ package com.ntt.skyway.core.channel import com.google.gson.Gson import com.ntt.skyway.core.channel.member.Member -import com.ntt.skyway.core.channel.member.RemoteMember import com.ntt.skyway.core.content.Codec import com.ntt.skyway.core.content.Encoding import com.ntt.skyway.core.content.Stream @@ -138,6 +137,7 @@ interface Publication { /** * このPublicationのSubscribeされた時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ var onSubscribedHandler: ((subscription: Subscription) -> Unit)? @@ -207,10 +207,6 @@ interface Publication { */ fun replaceStream(stream: LocalStream): Boolean - /** - * 統計情報を取得します。 - * experimentalな機能です。 - * @param remoteMemberId 対象の[RemoteMember]のID - */ + @Deprecated("This API is deprecated.", ReplaceWith("", "")) fun getStats(remoteMemberId: String): WebRTCStats? } diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/PublicationImpl.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/PublicationImpl.kt index c1a3ae3..dccc5ae 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/PublicationImpl.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/PublicationImpl.kt @@ -101,6 +101,7 @@ class PublicationImpl internal constructor( return nativeReplaceStream(nativePointer, stream.nativePointer) } + @Deprecated("This API is deprecated.", ReplaceWith("", "")) override fun getStats(remoteMemberId: String): WebRTCStats? { nativeGetStats(remoteMemberId, nativePointer)?.let { return Factory.createWebRTCStats(it) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Subscription.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Subscription.kt index 971c1b0..c80fd16 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Subscription.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/Subscription.kt @@ -66,6 +66,8 @@ interface Subscription { /** * このSubscriptionのStream。 + * `LocalPerson.subscribe`の返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 + * その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。 */ val stream: RemoteStream? @@ -105,10 +107,7 @@ interface Subscription { */ fun changePreferredEncoding(id: String) - /** - * 統計情報を取得します。 - * experimentalな機能です。 - */ + @Deprecated("This API is deprecated.", ReplaceWith("", "")) fun getStats(): WebRTCStats? /** diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/SubscriptionImpl.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/SubscriptionImpl.kt index 8703367..ff10f84 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/SubscriptionImpl.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/SubscriptionImpl.kt @@ -48,6 +48,7 @@ class SubscriptionImpl internal constructor( nativeChangePreferredEncoding(nativePointer, id) } + @Deprecated("This API is deprecated.", ReplaceWith("", "")) override fun getStats(): WebRTCStats? { nativeGetStats(nativePointer)?.let { return Factory.createWebRTCStats(it) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPerson.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPerson.kt index bc3d1c3..6a51711 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPerson.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPerson.kt @@ -32,6 +32,7 @@ abstract class LocalPerson : Member { /** * このLocalPersonがsubscribeした時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ abstract var onPublicationSubscribedHandler: ((subscription: Subscription) -> Unit)? @@ -41,7 +42,9 @@ abstract class LocalPerson : Member { abstract var onPublicationUnsubscribedHandler: ((subscription: Subscription) -> Unit)? /** - * Streamをpublishします。 + * Streamをpublishします。既にpublish中のStreamは指定することができません。 + * + * @param localStream publishするStream。 */ abstract suspend fun publish( localStream: LocalStream, options: Publication.Options? = null @@ -56,6 +59,8 @@ abstract class LocalPerson : Member { /** * Publicationをsubscribeします。 + * `LocalPerson.subscribe`の返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 + * その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。 */ abstract suspend fun subscribe( publicationId: String, options: Subscription.Options? = null diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPersonImpl.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPersonImpl.kt index dc0a5b4..14b693f 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPersonImpl.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/LocalPersonImpl.kt @@ -20,7 +20,7 @@ import kotlinx.coroutines.withContext class LocalPersonImpl internal constructor( override val channel: Channel, override val id: String, - override val name: String, + override val name: String?, override val nativePointer: Long, private val repository: Repository ) : LocalPerson() { @@ -29,8 +29,8 @@ class LocalPersonImpl internal constructor( override val side = Member.Side.LOCAL - override val metadata: String - get() = nativeMetadata(nativePointer) + override val metadata: String? + get() = nativeMetadata(nativePointer).takeUnless { it.isBlank() } override val state: Member.State get() = Member.State.fromString(nativeState(nativePointer)) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/Member.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/Member.kt index a3dd9c4..4705212 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/Member.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/Member.kt @@ -20,11 +20,11 @@ interface Member { /** * 名前。 */ - val name: String, + val name: String? = null, /** * Metadata。 */ - val metadata: String? = "", + val metadata: String? = null, /** * 生存確認の間隔。 */ @@ -76,7 +76,7 @@ interface Member { data class Dto( val channel: Channel, val id: String, - val name: String, + val name: String?, val nativePointer: Long ) @@ -93,7 +93,7 @@ interface Member { /** * このMemberの名前。 */ - val name: String + val name: String? val nativePointer: Long @@ -115,7 +115,7 @@ interface Member { /** * このMemberのMetadata。 */ - val metadata: String + val metadata: String? /** * このMemberの状態。 diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/RemoteMemberImpl.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/RemoteMemberImpl.kt index f55efaa..2355b19 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/RemoteMemberImpl.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/channel/member/RemoteMemberImpl.kt @@ -14,11 +14,11 @@ import kotlinx.coroutines.withContext abstract class RemoteMemberImpl internal constructor( final override val channel: Channel, override val id: String, - override val name: String, + override val name: String?, final override val nativePointer: Long ) : RemoteMember() { - override val metadata: String - get() = nativeMetadata(nativePointer) + override val metadata: String? + get() = nativeMetadata(nativePointer).takeUnless { it.isBlank() } override val state: Member.State get() = Member.State.fromString(nativeState(nativePointer)) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStats.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStats.kt index c9319c1..3a77862 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStats.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStats.kt @@ -3,9 +3,8 @@ */ package com.ntt.skyway.core.content -/** - * 統計情報の一覧。 - */ + +@Deprecated("This API is deprecated.", ReplaceWith("", "")) data class WebRTCStats( val reports: List ) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStatsReport.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStatsReport.kt index 49b08e8..c615b16 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStatsReport.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/WebRTCStatsReport.kt @@ -5,9 +5,8 @@ package com.ntt.skyway.core.content import com.google.gson.JsonElement -/** - * 統計情報。 - */ + +@Deprecated("This API is deprecated.", ReplaceWith("", "")) data class WebRTCStatsReport( /** * 統計情報のID。 diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/local/source/AudioSource.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/local/source/AudioSource.kt index 4c1146c..9abdd9b 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/local/source/AudioSource.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/content/local/source/AudioSource.kt @@ -21,14 +21,13 @@ object AudioSource { val isStarted get() = _isStarted - @SkyWayOptIn + @Deprecated("This API is deprecated.", ReplaceWith("", "")) var onAudioBufferHandler: ((buffer: ByteBuffer) -> Unit)? = null @Deprecated("This API is deprecated.", ReplaceWith("", "")) val audioRecord get() = null - @OptIn(SkyWayOptIn::class) internal val onAudioBufferListener = WebRtcAudioRecord.OnAudioBufferListener { buffer -> onAudioBufferHandler?.invoke(buffer) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketClient.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketClient.kt index 4ae5eea..ce78169 100644 --- a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketClient.kt +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketClient.kt @@ -30,6 +30,11 @@ class WebSocketClient { nativeOnMessage(nativePointer, text) } + override fun onClosing(webSocket: WebSocket, code: Int, reason: String) { + Logger.logD("Closing: $code $reason") + webSocket.close(code, reason) + } + override fun onClosed(webSocket: WebSocket, code: Int, reason: String) { Logger.logD("Closed: $code $reason") updateState(ConnectionState.CLOSED) @@ -43,15 +48,16 @@ class WebSocketClient { } } - private fun connect(url: String, subProtocol: String, nativePointer: Long) { + private fun connect(url: String, subProtocols: Array, headers: Array, nativePointer: Long) { Logger.logD("Connect start") this.nativePointer = nativePointer updateState(ConnectionState.CONNECTING) - - request = Request.Builder() - .addHeader("Sec-WebSocket-Protocol", subProtocol) - .url(url) - .build() + val request = Request.Builder().apply { + this.addHeader("Sec-WebSocket-Protocol", subProtocols.joinToString()) + headers.forEach { + this.addHeader(it.key, it.value) + } + }.url(url).build() ws = client.newWebSocket(request, webSocketListener) } @@ -74,6 +80,14 @@ class WebSocketClient { connectionState = state } + private fun createHeader(key: String, value: String): WebSocketHeader { + return WebSocketHeader(key, value) + } + + private fun createHeaderArray(length: Int): Array { + return Array(length){WebSocketHeader("", "")} + } + private external fun nativeOnConnect(nativePointer: Long) private external fun nativeOnMessage(nativePointer: Long, message: String) private external fun nativeOnClose(nativePointer: Long, code: Int) diff --git a/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketHeader.kt b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketHeader.kt new file mode 100644 index 0000000..13cb68b --- /dev/null +++ b/project/skyway_android_sdk/core/src/main/java/com/ntt/skyway/core/network/WebSocketHeader.kt @@ -0,0 +1,3 @@ +package com.ntt.skyway.core.network + +class WebSocketHeader(val key:String, val value:String) diff --git a/project/skyway_android_sdk/libskywaytest/src/main/cpp/CMakeLists.txt b/project/skyway_android_sdk/libskywaytest/src/main/cpp/CMakeLists.txt index af684a5..5ca1ab8 100644 --- a/project/skyway_android_sdk/libskywaytest/src/main/cpp/CMakeLists.txt +++ b/project/skyway_android_sdk/libskywaytest/src/main/cpp/CMakeLists.txt @@ -74,6 +74,7 @@ FILE( GLOB_RECURSE ANDROID_CONTEXT ../../../../core/src/main/cpp/skyway_android/ FILE( GLOB_RECURSE ANDROID_EVENT_LISTENER ../../../../core/src/main/cpp/skyway_android/core/event_listener.cpp ) FILE( GLOB_RECURSE ANDROID_UTIL ../../../../core/src/main/cpp/skyway_android/core/util/*.cpp ) FILE( GLOB_RECURSE ANDROID_NETWORK ../../../../core/src/main/cpp/skyway_android/core/network/*.cpp ) +FILE( GLOB_RECURSE ANDROID_PLATFORM ../../../../core/src/main/cpp/skyway_android/core/platform/*.cpp ) FILE( GLOB_RECURSE ANDROID_WRAPPER wrapper/*.cpp ) add_library(nativetest SHARED @@ -85,6 +86,7 @@ add_library(nativetest SHARED ${ANDROID_EVENT_LISTENER} ${ANDROID_NETWORK} ${ANDROID_UTIL} + ${ANDROID_PLATFORM} ${ANDROID_WRAPPER} nativetest.cpp) diff --git a/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.cpp b/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.cpp new file mode 100644 index 0000000..c715d5e --- /dev/null +++ b/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.cpp @@ -0,0 +1,25 @@ +// +// platform_info_delegator.cpp +// skyway_android +// +// Copyright © 2024 NTT Communications. All rights reserved. +// + +#include "platform_info_delegator.hpp" + +namespace skyway { +namespace platform { + +std::string PlatformInfoDelegator::GetPlatform() const { + return "android"; +} + +std::string PlatformInfoDelegator::GetOsInfo() const { + return "Android 10"; +} + +std::string PlatformInfoDelegator::GetModelName() const { + return "Android Device"; +} +} // namespace platform +} // namespace skyway diff --git a/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.hpp b/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.hpp new file mode 100644 index 0000000..087d91e --- /dev/null +++ b/project/skyway_android_sdk/libskywaytest/src/main/cpp/wrapper/platform_info_delegator.hpp @@ -0,0 +1,30 @@ +// +// platform_info_delegator.hpp +// skyway_android +// +// Copyright © 2024 NTT Communications. All rights reserved. +// + +#ifndef SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_WRAPPER_HPP +#define SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_WRAPPER_HPP + +#include + +namespace skyway { +namespace platform { + +class PlatformInfoDelegator : public skyway::platform::interface::PlatformInfoDelegator{ +public: + std::string GetPlatform() const override; + + std::string GetOsInfo() const override; + + std::string GetModelName() const override; +protected: +}; + +} // namespace platform +} // namespace skyway + + +#endif //SKYWAY_ANDROID_CORE_PLATFORM_PLATFORM_INFO_DELEGATOR_WRAPPER_HPP diff --git a/project/skyway_android_sdk/room/src/androidTest/java/com/ntt/skyway/room/sfu/SFURoomTest.kt b/project/skyway_android_sdk/room/src/androidTest/java/com/ntt/skyway/room/sfu/SFURoomTest.kt index 35ab32e..3ad48dd 100644 --- a/project/skyway_android_sdk/room/src/androidTest/java/com/ntt/skyway/room/sfu/SFURoomTest.kt +++ b/project/skyway_android_sdk/room/src/androidTest/java/com/ntt/skyway/room/sfu/SFURoomTest.kt @@ -228,4 +228,26 @@ class SFURoomTest { channel?.leave(bot!!) assertNull(room?.bot) } + + @Test + fun room_Member_NameAndMetadataNullable() = runBlocking { + val aliceRoom = SFURoom.create() + assertNotNull(aliceRoom) + assertTrue(aliceRoom?.name == null) + assertTrue(aliceRoom?.metadata == null) + val bobRoom = SFURoom.find(id = aliceRoom?.id) + assertNotNull(bobRoom) + val alice = aliceRoom?.join(RoomMember.Init()) + assertNotNull(alice) + assertTrue(alice?.name == null) + assertTrue(alice?.metadata == null) + val bob = bobRoom?.join(RoomMember.Init()) + assertNotNull(bob) + assertTrue(bob?.name == null) + assertTrue(bob?.metadata == null) + val bobRemoteMember = aliceRoom?.members?.firstOrNull { it.id != alice?.id } + assertNotNull(bobRemoteMember) + assertTrue(bobRemoteMember?.name == null) + assertTrue(bobRemoteMember?.metadata == null) + } } diff --git a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/Room.kt b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/Room.kt index d5b9694..8c60375 100644 --- a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/Room.kt +++ b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/Room.kt @@ -36,7 +36,7 @@ abstract class Room internal constructor(private val channel: Channel) { /** * このRoomのname。 */ - val name: String + val name: String? get() = channel.name /** @@ -47,7 +47,7 @@ abstract class Room internal constructor(private val channel: Channel) { /** * このRoomのMetadata。 */ - val metadata: String + val metadata: String? get() = channel.metadata /** @@ -154,6 +154,7 @@ abstract class Room internal constructor(private val channel: Channel) { /** * StreamがSubscribeされた時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ var onPublicationSubscribedHandler: ((subscription: RoomSubscription) -> Unit)? = null diff --git a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomPublication.kt b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomPublication.kt index 51521c6..1fd2d83 100644 --- a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomPublication.kt +++ b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomPublication.kt @@ -5,14 +5,13 @@ package com.ntt.skyway.room -import com.ntt.skyway.core.SkyWayOptIn import com.ntt.skyway.core.channel.Channel -import com.ntt.skyway.core.content.Codec -import com.ntt.skyway.core.content.Encoding -import com.ntt.skyway.core.content.Stream import com.ntt.skyway.core.channel.Publication import com.ntt.skyway.core.channel.Subscription import com.ntt.skyway.core.channel.member.Member +import com.ntt.skyway.core.content.Codec +import com.ntt.skyway.core.content.Encoding +import com.ntt.skyway.core.content.Stream import com.ntt.skyway.core.content.WebRTCStats import com.ntt.skyway.core.content.local.LocalStream import com.ntt.skyway.core.util.Logger @@ -155,6 +154,7 @@ class RoomPublication internal constructor( /** * このRoomPublicationのSubscribeされた時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ var onSubscribedHandler: ((subscription: RoomSubscription) -> Unit)? = null set(value) { @@ -308,12 +308,7 @@ class RoomPublication internal constructor( return origin?.replaceStream(stream) ?: publication.replaceStream(stream) } - /** - * 統計情報を取得します。 - * experimentalな機能です。 - * @param remoteMemberId 対象の[RemoteMember]のID - */ - @SkyWayOptIn + @Deprecated("This API is deprecated.", ReplaceWith("", "")) fun getStats(remoteMemberId: String): WebRTCStats? { val origin = publication.origin if (origin == null) { diff --git a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomSubscription.kt b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomSubscription.kt index a073e2a..1631a15 100644 --- a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomSubscription.kt +++ b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/RoomSubscription.kt @@ -4,11 +4,10 @@ package com.ntt.skyway.room -import com.ntt.skyway.core.SkyWayOptIn -import com.ntt.skyway.core.content.Stream -import com.ntt.skyway.core.content.remote.RemoteStream import com.ntt.skyway.core.channel.Subscription +import com.ntt.skyway.core.content.Stream import com.ntt.skyway.core.content.WebRTCStats +import com.ntt.skyway.core.content.remote.RemoteStream import com.ntt.skyway.room.member.RoomMember import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.withContext @@ -77,6 +76,8 @@ class RoomSubscription internal constructor( /** * このRoomSubscriptionの[Stream]。 + * `LocalRoomMember.subscribe`の返り値でSubscriptionを入手した場合、入手時点で値がsetされています。 + * その他、イベントの発火によってSubscriptionを取得した場合、まだ値がsetされていない可能性があります。 */ val stream: RemoteStream? get() = subscription.stream @@ -117,11 +118,7 @@ class RoomSubscription internal constructor( subscription.changePreferredEncoding(preferredEncodingId) } - /** - * 統計情報を取得します。 - * experimentalな機能です。 - */ - @SkyWayOptIn + @Deprecated("This API is deprecated.", ReplaceWith("", "")) fun getStats(): WebRTCStats? { return subscription.getStats() } diff --git a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/LocalRoomMember.kt b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/LocalRoomMember.kt index d9adb59..5308be4 100644 --- a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/LocalRoomMember.kt +++ b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/LocalRoomMember.kt @@ -56,6 +56,7 @@ abstract class LocalRoomMember internal constructor( /** * PublicationをSubscribeした時に発火するハンドラ。 + * Subscriptionにはまだstreamがsetされていない可能性があります。 */ var onPublicationSubscribedHandler: ((subscription: RoomSubscription) -> Unit)? = null set(value) { @@ -79,10 +80,10 @@ abstract class LocalRoomMember internal constructor( } /** - * [LocalStream]をpublishします。 + * [LocalStream]をpublishします。既にpublish中のStreamは指定することができません。 * [Room.onStreamPublishedHandler]が発火します。 * - * @param localStream publishするStream。既にpublish中のStreamは指定することができません。 + * @param localStream publishするStream。 */ open suspend fun publish( localStream: LocalStream, diff --git a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/RoomMember.kt b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/RoomMember.kt index 43e3329..79e4310 100644 --- a/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/RoomMember.kt +++ b/project/skyway_android_sdk/room/src/main/java/com/ntt/skyway/room/member/RoomMember.kt @@ -25,12 +25,12 @@ abstract class RoomMember internal constructor( /** * RoomMemberの名前。 */ - val name: String, + val name: String? = null, /** * RoomMemberのMetadata。 */ - val metadata: String? = "", + val metadata: String? = null, /** * 生存確認の間隔。 @@ -47,13 +47,13 @@ abstract class RoomMember internal constructor( /** * このRoomMemberの名前。 */ - val name: String + val name: String? get() = member.name /** * このRoomMemberのMetadata。 */ - val metadata: String + val metadata: String? get() = member.metadata /**