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

org.http4k.servirtium.InteractionControl.kt Maven / Gradle / Ivy

There is a newer version: 5.31.0.0
Show newest version
package org.http4k.servirtium

/**
 * Provides controls for interacting with an in-action Interaction recording.
 */
fun interface InteractionControl {
    fun addNote(note: String)

    companion object {
        @JvmStatic
        fun StorageBased(storage: InteractionStorage) = InteractionControl { storage.accept("## $it\n\n".toByteArray()) }

        val NoOp = InteractionControl { }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy