All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.http4k.tracing.TraceReporter.kt Maven / Gradle / Ivy

package org.http4k.tracing

import org.http4k.core.Uri

/**
 * Report the rendering of a trace
 */
fun interface TraceReporter {
    operator fun invoke(location: Uri, traceCompletion: TraceCompletion, render: TraceRender)

    companion object {
        val NoOp = TraceReporter { _, _, _ -> }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy