blob: e85b9c740db296778920c664f9b7f4adc0e7da62 [file] [log] [blame]
Roman Elizarovf16fd272017-02-07 11:26:00 +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 Elizarov01934df2017-01-31 09:18:34 +030017package kotlinx.coroutines.experimental
18
19import kotlinx.coroutines.experimental.NonCancellable.isActive
Roman Elizarovea4a51b2017-01-31 12:01:25 +030020import kotlin.coroutines.experimental.AbstractCoroutineContextElement
Roman Elizarov01934df2017-01-31 09:18:34 +030021
22/**
23 * A non-cancelable job that is always [active][isActive]. It is designed to be used with [run] builder
Roman Elizarovb7c46de2017-02-08 12:35:24 +030024 * to prevent cancellation of code blocks that need to run without cancellation.
25 *
26 * Use it like this:
Roman Elizarov01934df2017-01-31 09:18:34 +030027 * ```
28 * run(NonCancellable) {
29 * // this code will not be cancelled
30 * }
31 * ```
32 */
33object NonCancellable : AbstractCoroutineContextElement(Job), Job {
34 override val isActive: Boolean get() = true
Roman Elizarovb7c46de2017-02-08 12:35:24 +030035 override fun getCompletionException(): CancellationException = throw IllegalStateException("This job is always active")
Roman Elizarov01934df2017-01-31 09:18:34 +030036 override fun onCompletion(handler: CompletionHandler): Job.Registration = EmptyRegistration
Roman Elizarovf6fed2a2017-02-03 19:12:09 +030037 override fun cancel(cause: Throwable?): Boolean = false
Roman Elizarov01934df2017-01-31 09:18:34 +030038}