From 35ba11a0343f626aa1832b4ba43a0ed2363fc265 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 6 Apr 2019 19:36:32 +0200 Subject: Dokka upgrade to 0.9.18 --- .../-protocol/index.html | 24 +++++++++++----------- .../-protocol/intercept-buffer-protocol.html | 2 +- .../-protocol/intercept-file-protocol.html | 2 +- .../-protocol/intercept-http-protocol.html | 2 +- .../-protocol/intercept-stream-protocol.html | 2 +- .../-protocol/intercept-string-protocol.html | 2 +- .../-protocol/register-buffer-protocol.html | 2 +- .../-protocol/register-file-protocol.html | 2 +- .../-protocol/register-http-protocol.html | 2 +- .../-protocol/register-stream-protocol.html | 2 +- .../-protocol/register-string-protocol.html | 2 +- .../-protocol/unintercept-protocol.html | 2 +- .../-protocol/unregister-protocol.html | 2 +- 13 files changed, 24 insertions(+), 24 deletions(-) (limited to 'api/pl.treksoft.kvision.electron/-protocol') diff --git a/api/pl.treksoft.kvision.electron/-protocol/index.html b/api/pl.treksoft.kvision.electron/-protocol/index.html index d433f32a..01777b62 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/index.html +++ b/api/pl.treksoft.kvision.electron/-protocol/index.html @@ -17,35 +17,35 @@

interceptBufferProtocol

-abstract fun interceptBufferProtocol(scheme: String, handler: (request: InterceptBufferProtocolRequest, callback: (<ERROR CLASS>?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptBufferProtocol(scheme: String, handler: (request: InterceptBufferProtocolRequest, callback: (<ERROR CLASS>?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

interceptFileProtocol

-abstract fun interceptFileProtocol(scheme: String, handler: (request: InterceptFileProtocolRequest, callback: (filePath: String) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptFileProtocol(scheme: String, handler: (request: InterceptFileProtocolRequest, callback: (filePath: String) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

interceptHttpProtocol

-abstract fun interceptHttpProtocol(scheme: String, handler: (request: InterceptHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptHttpProtocol(scheme: String, handler: (request: InterceptHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

interceptStreamProtocol

-abstract fun interceptStreamProtocol(scheme: String, handler: (request: InterceptStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptStreamProtocol(scheme: String, handler: (request: InterceptStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

interceptStringProtocol

-abstract fun interceptStringProtocol(scheme: String, handler: (request: InterceptStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptStringProtocol(scheme: String, handler: (request: InterceptStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit @@ -59,21 +59,21 @@

registerBufferProtocol

-abstract fun registerBufferProtocol(scheme: String, handler: (request: RegisterBufferProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerBufferProtocol(scheme: String, handler: (request: RegisterBufferProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

registerFileProtocol

-abstract fun registerFileProtocol(scheme: String, handler: (request: RegisterFileProtocolRequest, callback: (filePath: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerFileProtocol(scheme: String, handler: (request: RegisterFileProtocolRequest, callback: (filePath: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

registerHttpProtocol

-abstract fun registerHttpProtocol(scheme: String, handler: (request: RegisterHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerHttpProtocol(scheme: String, handler: (request: RegisterHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit @@ -94,28 +94,28 @@

registerStreamProtocol

-abstract fun registerStreamProtocol(scheme: String, handler: (request: RegisterStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerStreamProtocol(scheme: String, handler: (request: RegisterStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

registerStringProtocol

-abstract fun registerStringProtocol(scheme: String, handler: (request: RegisterStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerStringProtocol(scheme: String, handler: (request: RegisterStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit

uninterceptProtocol

-abstract fun uninterceptProtocol(scheme: String, completion: (Error) -> Unit = definedExternally): Unit +abstract fun uninterceptProtocol(scheme: String, completion: ((Error) -> Unit)? = definedExternally): Unit

unregisterProtocol

-abstract fun unregisterProtocol(scheme: String, completion: (Error) -> Unit = definedExternally): Unit +abstract fun unregisterProtocol(scheme: String, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/intercept-buffer-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/intercept-buffer-protocol.html index a11e7798..a0d4c2b3 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/intercept-buffer-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/intercept-buffer-protocol.html @@ -9,6 +9,6 @@

interceptBufferProtocol

-abstract fun interceptBufferProtocol(scheme: String, handler: (request: InterceptBufferProtocolRequest, callback: (<ERROR CLASS>?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptBufferProtocol(scheme: String, handler: (request: InterceptBufferProtocolRequest, callback: (<ERROR CLASS>?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/intercept-file-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/intercept-file-protocol.html index a60cbb91..30879851 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/intercept-file-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/intercept-file-protocol.html @@ -9,6 +9,6 @@

interceptFileProtocol

-abstract fun interceptFileProtocol(scheme: String, handler: (request: InterceptFileProtocolRequest, callback: (filePath: String) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptFileProtocol(scheme: String, handler: (request: InterceptFileProtocolRequest, callback: (filePath: String) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/intercept-http-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/intercept-http-protocol.html index 4f8d9fd0..d985f942 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/intercept-http-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/intercept-http-protocol.html @@ -9,6 +9,6 @@

interceptHttpProtocol

-abstract fun interceptHttpProtocol(scheme: String, handler: (request: InterceptHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptHttpProtocol(scheme: String, handler: (request: InterceptHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/intercept-stream-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/intercept-stream-protocol.html index a48c7352..792f9ccc 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/intercept-stream-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/intercept-stream-protocol.html @@ -9,6 +9,6 @@

interceptStreamProtocol

-abstract fun interceptStreamProtocol(scheme: String, handler: (request: InterceptStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptStreamProtocol(scheme: String, handler: (request: InterceptStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/intercept-string-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/intercept-string-protocol.html index 951eb3b4..0f73e96c 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/intercept-string-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/intercept-string-protocol.html @@ -9,6 +9,6 @@

interceptStringProtocol

-abstract fun interceptStringProtocol(scheme: String, handler: (request: InterceptStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun interceptStringProtocol(scheme: String, handler: (request: InterceptStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/register-buffer-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/register-buffer-protocol.html index b5f41838..8a797fe6 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/register-buffer-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/register-buffer-protocol.html @@ -9,6 +9,6 @@

registerBufferProtocol

-abstract fun registerBufferProtocol(scheme: String, handler: (request: RegisterBufferProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerBufferProtocol(scheme: String, handler: (request: RegisterBufferProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/register-file-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/register-file-protocol.html index 835a1327..c1ffb075 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/register-file-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/register-file-protocol.html @@ -9,6 +9,6 @@

registerFileProtocol

-abstract fun registerFileProtocol(scheme: String, handler: (request: RegisterFileProtocolRequest, callback: (filePath: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerFileProtocol(scheme: String, handler: (request: RegisterFileProtocolRequest, callback: (filePath: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/register-http-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/register-http-protocol.html index 4f38150b..c66ef162 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/register-http-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/register-http-protocol.html @@ -9,6 +9,6 @@

registerHttpProtocol

-abstract fun registerHttpProtocol(scheme: String, handler: (request: RegisterHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerHttpProtocol(scheme: String, handler: (request: RegisterHttpProtocolRequest, callback: (redirectRequest: RedirectRequest) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/register-stream-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/register-stream-protocol.html index 08130e30..f8ee2710 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/register-stream-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/register-stream-protocol.html @@ -9,6 +9,6 @@

registerStreamProtocol

-abstract fun registerStreamProtocol(scheme: String, handler: (request: RegisterStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerStreamProtocol(scheme: String, handler: (request: RegisterStreamProtocolRequest, callback: (dynamic) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/register-string-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/register-string-protocol.html index a44ad8d9..91a9332a 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/register-string-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/register-string-protocol.html @@ -9,6 +9,6 @@

registerStringProtocol

-abstract fun registerStringProtocol(scheme: String, handler: (request: RegisterStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: (Error) -> Unit = definedExternally): Unit +abstract fun registerStringProtocol(scheme: String, handler: (request: RegisterStringProtocolRequest, callback: (data: String?) -> Unit) -> Unit, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/unintercept-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/unintercept-protocol.html index 46fcca6a..c1a64f2e 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/unintercept-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/unintercept-protocol.html @@ -9,6 +9,6 @@

uninterceptProtocol

-abstract fun uninterceptProtocol(scheme: String, completion: (Error) -> Unit = definedExternally): Unit +abstract fun uninterceptProtocol(scheme: String, completion: ((Error) -> Unit)? = definedExternally): Unit diff --git a/api/pl.treksoft.kvision.electron/-protocol/unregister-protocol.html b/api/pl.treksoft.kvision.electron/-protocol/unregister-protocol.html index 176772a2..6fddba27 100644 --- a/api/pl.treksoft.kvision.electron/-protocol/unregister-protocol.html +++ b/api/pl.treksoft.kvision.electron/-protocol/unregister-protocol.html @@ -9,6 +9,6 @@

unregisterProtocol

-abstract fun unregisterProtocol(scheme: String, completion: (Error) -> Unit = definedExternally): Unit +abstract fun unregisterProtocol(scheme: String, completion: ((Error) -> Unit)? = definedExternally): Unit -- cgit