Package-level declarations

Types

Link copied to clipboard

A thread-safe, in-memory implementation of SuspendMutableMap for storing string key-value pairs, typically used for managing headers in a concurrent environment.

Link copied to clipboard
interface SuspendMutableMap<K, V>

A mutable map with suspendable, non-blocking operations, designed for asynchronous access in coroutine-based environments. This interface mirrors the standard MutableMap, but its functions are suspendable to allow for implementations that perform I/O, network requests, or other long-running tasks without blocking a thread.