WebSocket 링크
비공식 베타 번역
이 페이지는 PageTurner AI로 번역되었습니다(베타). 프로젝트 공식 승인을 받지 않았습니다. 오류를 발견하셨나요? 문제 신고 →
wsLink는 tRPC의 WebSockets 클라이언트 및 구독 기능을 사용할 때 활용되는 종단 링크입니다. 더 자세한 내용은 여기에서 확인하실 수 있습니다.
사용법
wsLink를 사용하려면 createWSClient로 생성할 수 있는 TRPCWebSocketClient를 전달해야 합니다:
client/index.tstsimport {createTRPCClient ,createWSClient ,wsLink } from '@trpc/client';import type {AppRouter } from './server';constwsClient =createWSClient ({url : 'ws://localhost:3000',});consttrpcClient =createTRPCClient <AppRouter >({links : [wsLink <AppRouter >({client :wsClient })],});
client/index.tstsimport {createTRPCClient ,createWSClient ,wsLink } from '@trpc/client';import type {AppRouter } from './server';constwsClient =createWSClient ({url : 'ws://localhost:3000',});consttrpcClient =createTRPCClient <AppRouter >({links : [wsLink <AppRouter >({client :wsClient })],});
인증 / 연결 매개변수
wsLink / createWSClient 옵션
wsLink 함수에는 전달될 TRPCWebSocketClient가 필요하며, 이 클라이언트는 WebSocketClientOptions에 정의된 필드로 구성할 수 있습니다:
tsexport interfaceWebSocketLinkOptions {client :TRPCWebSocketClient ;/*** Data transformer* @see https://trpc.io/docs/v11/data-transformers**/transformer ?:DataTransformerOptions ;}declare functioncreateWSClient (opts :WebSocketClientOptions ):TRPCWebSocketClient ;export interfaceWebSocketClientOptions {/*** The URL to connect to (can be a function that returns a URL)*/url : string | (() =>MaybePromise <string>);/*** Connection params that are available in `createContext()`* These are sent as the first message*/connectionParams ?:Record <string, string> | null | (() =>MaybePromise <Record <string, string> | null>);/*** Ponyfill which WebSocket implementation to use*/WebSocket ?: typeofWebSocket ;/*** The number of milliseconds before a reconnect is attempted.* @default {@link exponentialBackoff}*/retryDelayMs ?: typeofexponentialBackoff ;/*** Triggered when a WebSocket connection is established*/onOpen ?: () => void;/*** Triggered when a WebSocket connection encounters an error*/onError ?: (evt ?:Event ) => void;/*** Triggered when a WebSocket connection is closed*/onClose ?: (cause ?: {code ?: number }) => void;/*** Lazy mode will close the WebSocket automatically after a period of inactivity (no messages sent or received and no pending requests)*/lazy ?: {/*** Enable lazy mode* @default false*/enabled : boolean;/*** Close the WebSocket after this many milliseconds* @default 0*/closeMs : number;};/*** Send ping messages to the server and kill the connection if no pong message is returned*/keepAlive ?: {/*** @default false*/enabled : boolean;/*** Send a ping message every this many milliseconds* @default 5_000*/intervalMs ?: number;/*** Close the WebSocket after this many milliseconds if the server does not respond* @default 1_000*/pongTimeoutMs ?: number;};/*** Custom encoder for wire encoding (e.g. custom binary formats)* @default jsonEncoder*/experimental_encoder ?:Encoder ;}
tsexport interfaceWebSocketLinkOptions {client :TRPCWebSocketClient ;/*** Data transformer* @see https://trpc.io/docs/v11/data-transformers**/transformer ?:DataTransformerOptions ;}declare functioncreateWSClient (opts :WebSocketClientOptions ):TRPCWebSocketClient ;export interfaceWebSocketClientOptions {/*** The URL to connect to (can be a function that returns a URL)*/url : string | (() =>MaybePromise <string>);/*** Connection params that are available in `createContext()`* These are sent as the first message*/connectionParams ?:Record <string, string> | null | (() =>MaybePromise <Record <string, string> | null>);/*** Ponyfill which WebSocket implementation to use*/WebSocket ?: typeofWebSocket ;/*** The number of milliseconds before a reconnect is attempted.* @default {@link exponentialBackoff}*/retryDelayMs ?: typeofexponentialBackoff ;/*** Triggered when a WebSocket connection is established*/onOpen ?: () => void;/*** Triggered when a WebSocket connection encounters an error*/onError ?: (evt ?:Event ) => void;/*** Triggered when a WebSocket connection is closed*/onClose ?: (cause ?: {code ?: number }) => void;/*** Lazy mode will close the WebSocket automatically after a period of inactivity (no messages sent or received and no pending requests)*/lazy ?: {/*** Enable lazy mode* @default false*/enabled : boolean;/*** Close the WebSocket after this many milliseconds* @default 0*/closeMs : number;};/*** Send ping messages to the server and kill the connection if no pong message is returned*/keepAlive ?: {/*** @default false*/enabled : boolean;/*** Send a ping message every this many milliseconds* @default 5_000*/intervalMs ?: number;/*** Close the WebSocket after this many milliseconds if the server does not respond* @default 1_000*/pongTimeoutMs ?: number;};/*** Custom encoder for wire encoding (e.g. custom binary formats)* @default jsonEncoder*/experimental_encoder ?:Encoder ;}
참조
이 링크의 소스 코드는 GitHub에서 확인할 수 있습니다.