mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-07-18 20:48:29 +02:00
feat: add @actions/cache
This commit is contained in:
parent
b15fb7d098
commit
16e8c96a41
1932 changed files with 261172 additions and 10 deletions
84
node_modules/@opentelemetry/api/build/esm/propagation/TextMapPropagator.d.ts
generated
vendored
Normal file
84
node_modules/@opentelemetry/api/build/esm/propagation/TextMapPropagator.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,84 @@
|
|||
import { Context } from '../context/types';
|
||||
/**
|
||||
* Injects `Context` into and extracts it from carriers that travel
|
||||
* in-band across process boundaries. Encoding is expected to conform to the
|
||||
* HTTP Header Field semantics. Values are often encoded as RPC/HTTP request
|
||||
* headers.
|
||||
*
|
||||
* The carrier of propagated data on both the client (injector) and server
|
||||
* (extractor) side is usually an object such as http headers. Propagation is
|
||||
* usually implemented via library-specific request interceptors, where the
|
||||
* client-side injects values and the server-side extracts them.
|
||||
*/
|
||||
export interface TextMapPropagator<Carrier = any> {
|
||||
/**
|
||||
* Injects values from a given `Context` into a carrier.
|
||||
*
|
||||
* OpenTelemetry defines a common set of format values (TextMapPropagator),
|
||||
* and each has an expected `carrier` type.
|
||||
*
|
||||
* @param context the Context from which to extract values to transmit over
|
||||
* the wire.
|
||||
* @param carrier the carrier of propagation fields, such as http request
|
||||
* headers.
|
||||
* @param setter an optional {@link TextMapSetter}. If undefined, values will be
|
||||
* set by direct object assignment.
|
||||
*/
|
||||
inject(context: Context, carrier: Carrier, setter: TextMapSetter<Carrier>): void;
|
||||
/**
|
||||
* Given a `Context` and a carrier, extract context values from a
|
||||
* carrier and return a new context, created from the old context, with the
|
||||
* extracted values.
|
||||
*
|
||||
* @param context the Context from which to extract values to transmit over
|
||||
* the wire.
|
||||
* @param carrier the carrier of propagation fields, such as http request
|
||||
* headers.
|
||||
* @param getter an optional {@link TextMapGetter}. If undefined, keys will be all
|
||||
* own properties, and keys will be accessed by direct object access.
|
||||
*/
|
||||
extract(context: Context, carrier: Carrier, getter: TextMapGetter<Carrier>): Context;
|
||||
/**
|
||||
* Return a list of all fields which may be used by the propagator.
|
||||
*/
|
||||
fields(): string[];
|
||||
}
|
||||
/**
|
||||
* A setter is specified by the caller to define a specific method
|
||||
* to set key/value pairs on the carrier within a propagator.
|
||||
*/
|
||||
export interface TextMapSetter<Carrier = any> {
|
||||
/**
|
||||
* Callback used to set a key/value pair on an object.
|
||||
*
|
||||
* Should be called by the propagator each time a key/value pair
|
||||
* should be set, and should set that key/value pair on the propagator.
|
||||
*
|
||||
* @param carrier object or class which carries key/value pairs
|
||||
* @param key string key to modify
|
||||
* @param value value to be set to the key on the carrier
|
||||
*/
|
||||
set(carrier: Carrier, key: string, value: string): void;
|
||||
}
|
||||
/**
|
||||
* A getter is specified by the caller to define a specific method
|
||||
* to get the value of a key from a carrier.
|
||||
*/
|
||||
export interface TextMapGetter<Carrier = any> {
|
||||
/**
|
||||
* Get a list of all keys available on the carrier.
|
||||
*
|
||||
* @param carrier
|
||||
*/
|
||||
keys(carrier: Carrier): string[];
|
||||
/**
|
||||
* Get the value of a specific key from the carrier.
|
||||
*
|
||||
* @param carrier
|
||||
* @param key
|
||||
*/
|
||||
get(carrier: Carrier, key: string): undefined | string | string[];
|
||||
}
|
||||
export declare const defaultTextMapGetter: TextMapGetter;
|
||||
export declare const defaultTextMapSetter: TextMapSetter;
|
||||
//# sourceMappingURL=TextMapPropagator.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue