Skip to main content
Module

x/blocks/deps.ts>SpanKind

Open-Source web editor based on Preact, Tailwind and TypeScript. The other side of code.
Very Popular
Go to Latest
enum SpanKind
import { SpanKind } from "https://deno.land/x/blocks@1.48.7/deps.ts";

Members

CLIENT = 2

Indicates that the span covers the client-side wrapper around an RPC or other remote request.

CONSUMER = 4

Indicates that the span describes consumer receiving a message from a broker. Unlike client and server, there is no direct critical path latency relationship between producer and consumer spans.

INTERNAL = 0

Default value. Indicates that the span is used internally.

PRODUCER = 3

Indicates that the span describes producer sending a message to a broker. Unlike client and server, there is no direct critical path latency relationship between producer and consumer spans.

SERVER = 1

Indicates that the span covers server-side handling of an RPC or other remote request.