IdempotencyLevel

sealed class IdempotencyLevel(val number: Int)(source)

Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.

Inheritors

Constructors

Link copied to clipboard
protected constructor(number: Int)

Types

Link copied to clipboard
object Companion
Link copied to clipboard

idempotent, but may have side effects

Link copied to clipboard

implies idempotent

Link copied to clipboard

Properties

Link copied to clipboard
open val number: Int