blob: 09a8789ebbd50c8c13fd8cf4a09a2acc81805331 [file] [log] [blame]
Roman Elizarove1c0b652017-12-01 14:02:57 +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
17package kotlinx.coroutines.experimental
18
19import kotlinx.coroutines.experimental.NonCancellable.isActive
20import kotlin.coroutines.experimental.AbstractCoroutineContextElement
21
22/**
23 * A non-cancelable job that is always [active][isActive]. It is designed to be used with [run] builder
24 * to prevent cancellation of code blocks that need to run without cancellation.
25 *
26 * Use it like this:
27 * ```
28 * run(NonCancellable) {
29 * // this code will not be cancelled
30 * }
31 * ```
32 */
33public actual object NonCancellable : AbstractCoroutineContextElement(Job), Job {
34 /** Always returns `true`. */
35 actual override val isActive: Boolean get() = true
36
37 /** Always returns `false`. */
38 actual override val isCompleted: Boolean get() = false
39
40 /** Always returns `false`. */
41 actual override val isCancelled: Boolean get() = false
42
43 /** Always returns `false`. */
44 actual override fun start(): Boolean = false
45
46 /** Always throws [UnsupportedOperationException]. */
47 actual suspend override fun join() {
48 throw UnsupportedOperationException("This job is always active")
49 }
50
51 /** Always throws [IllegalStateException]. */
52 actual override fun getCancellationException(): CancellationException = throw IllegalStateException("This job is always active")
53
54 /** Always returns [NonDisposableHandle]. */
55 actual override fun invokeOnCompletion(onCancelling: Boolean, invokeImmediately: Boolean, handler: CompletionHandler): DisposableHandle =
56 NonDisposableHandle
57
58 /** Always returns `false`. */
59 actual override fun cancel(cause: Throwable?): Boolean = false
60
61 /** Always returns [emptySequence]. */
62 actual override val children: Sequence<Job>
63 get() = emptySequence()
64
65 /** Always returns [NonDisposableHandle] and does not do anything. */
66 @Suppress("OverridingDeprecatedMember")
67 actual override fun attachChild(child: Job): DisposableHandle = NonDisposableHandle
68}