blob: f61d2abd0bb8f30b82afaa0121b6162ea5a9a9f5 [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov96191342018-04-20 18:13:33 +03005package kotlinx.coroutines.experimental.internal
6
Roman Elizarov11d6b5b2018-04-26 10:11:50 +03007/**
8 * Closeable entity.
9 * @suppress **Deprecated**
10 */
11@Deprecated("No replacement, see specific use")
12public actual interface Closeable {
13 public actual fun close()
Vsevolod Tolstopyatov96191342018-04-20 18:13:33 +030014}