class IdempotencyLevel (View 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.

Protobuf type google.protobuf.MethodOptions.IdempotencyLevel

Constants

IDEMPOTENCY_UNKNOWN

Generated from protobuf enum IDEMPOTENCY_UNKNOWN = 0;

NO_SIDE_EFFECTS

implies idempotent

Generated from protobuf enum NO_SIDE_EFFECTS = 1;

IDEMPOTENT

idempotent, but may have side effects

Generated from protobuf enum IDEMPOTENT = 2;

Methods

static 
name($value)

No description

static 
value($name)

No description

Details

static name($value)

No description

Parameters

$value

static value($name)

No description

Parameters

$name