blob: b4777fd4a7844beb1fb707257f25d8e1eb2362fc [file] [log] [blame]
Roman Elizarova74eb5f2017-05-11 20:15:18 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Roman Elizarov23fb7282018-01-24 23:09:42 +030017package kotlinx.coroutines.experimental.intrinsics
Roman Elizarova74eb5f2017-05-11 20:15:18 +030018
Roman Elizarov23fb7282018-01-24 23:09:42 +030019import kotlinx.coroutines.experimental.*
20import kotlin.coroutines.experimental.*
21import kotlin.coroutines.experimental.intrinsics.*
Roman Elizarova74eb5f2017-05-11 20:15:18 +030022
23/**
24 * Use this function to start coroutine in a cancellable way, so that it can be cancelled
25 * while waiting to be dispatched.
Roman Elizarova74eb5f2017-05-11 20:15:18 +030026 */
Roman Elizarov23fb7282018-01-24 23:09:42 +030027public fun <T> (suspend () -> T).startCoroutineCancellable(completion: Continuation<T>) =
Roman Elizarova74eb5f2017-05-11 20:15:18 +030028 createCoroutineUnchecked(completion).resumeCancellable(Unit)
29
30/**
31 * Use this function to start coroutine in a cancellable way, so that it can be cancelled
32 * while waiting to be dispatched.
Roman Elizarova74eb5f2017-05-11 20:15:18 +030033 */
Roman Elizarov23fb7282018-01-24 23:09:42 +030034public fun <R, T> (suspend (R) -> T).startCoroutineCancellable(receiver: R, completion: Continuation<T>) =
Roman Elizarova74eb5f2017-05-11 20:15:18 +030035 createCoroutineUnchecked(receiver, completion).resumeCancellable(Unit)