commonMain.okio.Okio.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Lightstep OpenTelemetry Auto Exporter
The newest version!
/*
* Copyright (C) 2019 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okio
/**
* Returns a new source that buffers reads from `source`. The returned source will perform bulk
* reads into its in-memory buffer. Use this wherever you read a source to get an ergonomic and
* efficient access to data.
*/
expect fun Source.buffer(): BufferedSource
/**
* Returns a new sink that buffers writes to `sink`. The returned sink will batch writes to `sink`.
* Use this wherever you write to a sink to get an ergonomic and efficient access to data.
*/
expect fun Sink.buffer(): BufferedSink
/** Returns a sink that writes nowhere. */
expect fun blackholeSink(): Sink // expect/actual required for Java interop
internal class BlackholeSink : Sink {
override fun write(source: Buffer, byteCount: Long) = source.skip(byteCount)
override fun flush() {}
override fun timeout() = Timeout.NONE
override fun close() {}
}