文件操作 - connection.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/vscode-jsonrpc/lib/common/connection.d.ts
编辑文件内容
import { Message, RequestType, RequestType0, RequestType1, RequestType2, RequestType3, RequestType4, RequestType5, RequestType6, RequestType7, RequestType8, RequestType9, ResponseMessage, ResponseError, NotificationMessage, NotificationType, NotificationType0, NotificationType1, NotificationType2, NotificationType3, NotificationType4, NotificationType5, NotificationType6, NotificationType7, NotificationType8, NotificationType9, _EM, ParameterStructures } from './messages'; import type { Disposable } from './disposable'; import { Event } from './events'; import { CancellationToken, AbstractCancellationTokenSource } from './cancellation'; import { MessageReader } from './messageReader'; import { MessageWriter } from './messageWriter'; export declare type ProgressToken = number | string; interface ProgressParams<T> { /** * The progress token provided by the client or server. */ token: ProgressToken; /** * The progress data. */ value: T; } export declare class ProgressType<PR> { /** * Clients must not use these properties. They are here to ensure correct typing. * in TypeScript */ readonly __?: [PR, _EM]; readonly _pr?: PR; constructor(); } export declare type HandlerResult<R, E> = R | ResponseError<E> | Thenable<R> | Thenable<ResponseError<E>> | Thenable<R | ResponseError<E>>; export interface StarRequestHandler { (method: string, params: any[] | object | undefined, token: CancellationToken): HandlerResult<any, any>; } export interface GenericRequestHandler<R, E> { (...params: any[]): HandlerResult<R, E>; } export interface RequestHandler0<R, E> { (token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler<P, R, E> { (params: P, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler1<P1, R, E> { (p1: P1, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler2<P1, P2, R, E> { (p1: P1, p2: P2, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler3<P1, P2, P3, R, E> { (p1: P1, p2: P2, p3: P3, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler4<P1, P2, P3, P4, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler5<P1, P2, P3, P4, P5, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler6<P1, P2, P3, P4, P5, P6, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler7<P1, P2, P3, P4, P5, P6, P7, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler8<P1, P2, P3, P4, P5, P6, P7, P8, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, token: CancellationToken): HandlerResult<R, E>; } export interface RequestHandler9<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, token: CancellationToken): HandlerResult<R, E>; } export interface StarNotificationHandler { (method: string, params: any[] | object | undefined): void; } export interface GenericNotificationHandler { (...params: any[]): void; } export interface NotificationHandler0 { (): void; } export interface NotificationHandler<P> { (params: P): void; } export interface NotificationHandler1<P1> { (p1: P1): void; } export interface NotificationHandler2<P1, P2> { (p1: P1, p2: P2): void; } export interface NotificationHandler3<P1, P2, P3> { (p1: P1, p2: P2, p3: P3): void; } export interface NotificationHandler4<P1, P2, P3, P4> { (p1: P1, p2: P2, p3: P3, p4: P4): void; } export interface NotificationHandler5<P1, P2, P3, P4, P5> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): void; } export interface NotificationHandler6<P1, P2, P3, P4, P5, P6> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): void; } export interface NotificationHandler7<P1, P2, P3, P4, P5, P6, P7> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7): void; } export interface NotificationHandler8<P1, P2, P3, P4, P5, P6, P7, P8> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8): void; } export interface NotificationHandler9<P1, P2, P3, P4, P5, P6, P7, P8, P9> { (p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9): void; } export interface Logger { error(message: string): void; warn(message: string): void; info(message: string): void; log(message: string): void; } export declare const NullLogger: Logger; export declare enum Trace { Off = 0, Messages = 1, Verbose = 2 } export declare type TraceValues = 'off' | 'messages' | 'verbose'; export declare namespace Trace { function fromString(value: string): Trace; function toString(value: Trace): TraceValues; } export declare enum TraceFormat { Text = "text", JSON = "json" } export declare namespace TraceFormat { function fromString(value: string): TraceFormat; } export interface TraceOptions { sendNotification?: boolean; traceFormat?: TraceFormat; } export interface SetTraceParams { value: TraceValues; } export declare namespace SetTraceNotification { const type: NotificationType<SetTraceParams>; } export interface LogTraceParams { message: string; verbose?: string; } export declare namespace LogTraceNotification { const type: NotificationType<LogTraceParams>; } export interface Tracer { log(dataObject: any): void; log(message: string, data?: string): void; } export declare enum ConnectionErrors { /** * The connection is closed. */ Closed = 1, /** * The connection got disposed. */ Disposed = 2, /** * The connection is already in listening mode. */ AlreadyListening = 3 } export declare class ConnectionError extends Error { readonly code: ConnectionErrors; constructor(code: ConnectionErrors, message: string); } export declare type ConnectionStrategy = { cancelUndispatched?: (message: Message, next: (message: Message) => ResponseMessage | undefined) => ResponseMessage | undefined; }; export declare namespace ConnectionStrategy { function is(value: any): value is ConnectionStrategy; } export declare type CancellationId = number | string; export interface CancellationReceiverStrategy { createCancellationTokenSource(id: CancellationId): AbstractCancellationTokenSource; dispose?(): void; } export declare namespace CancellationReceiverStrategy { const Message: CancellationReceiverStrategy; function is(value: any): value is CancellationReceiverStrategy; } export interface CancellationSenderStrategy { sendCancellation(conn: MessageConnection, id: CancellationId): void; cleanup(id: CancellationId): void; dispose?(): void; } export declare namespace CancellationSenderStrategy { const Message: CancellationSenderStrategy; function is(value: any): value is CancellationSenderStrategy; } export interface CancellationStrategy { receiver: CancellationReceiverStrategy; sender: CancellationSenderStrategy; } export declare namespace CancellationStrategy { const Message: CancellationStrategy; function is(value: any): value is CancellationStrategy; } export interface ConnectionOptions { cancellationStrategy?: CancellationStrategy; connectionStrategy?: ConnectionStrategy; } export declare namespace ConnectionOptions { function is(value: any): value is ConnectionOptions; } export interface MessageConnection { sendRequest<R, E>(type: RequestType0<R, E>, token?: CancellationToken): Promise<R>; sendRequest<P, R, E>(type: RequestType<P, R, E>, params: P, token?: CancellationToken): Promise<R>; sendRequest<P1, R, E>(type: RequestType1<P1, R, E>, p1: P1, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, R, E>(type: RequestType2<P1, P2, R, E>, p1: P1, p2: P2, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, R, E>(type: RequestType3<P1, P2, P3, R, E>, p1: P1, p2: P2, p3: P3, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, R, E>(type: RequestType4<P1, P2, P3, P4, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, P5, R, E>(type: RequestType5<P1, P2, P3, P4, P5, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, P5, P6, R, E>(type: RequestType6<P1, P2, P3, P4, P5, P6, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, P5, P6, P7, R, E>(type: RequestType7<P1, P2, P3, P4, P5, P6, P7, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, P5, P6, P7, P8, R, E>(type: RequestType8<P1, P2, P3, P4, P5, P6, P7, P8, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, token?: CancellationToken): Promise<R>; sendRequest<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E>(type: RequestType9<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, token?: CancellationToken): Promise<R>; sendRequest<R>(method: string, r0?: ParameterStructures | any, ...rest: any[]): Promise<R>; onRequest<R, E>(type: RequestType0<R, E>, handler: RequestHandler0<R, E>): Disposable; onRequest<P, R, E>(type: RequestType<P, R, E>, handler: RequestHandler<P, R, E>): Disposable; onRequest<P1, R, E>(type: RequestType1<P1, R, E>, handler: RequestHandler1<P1, R, E>): Disposable; onRequest<P1, P2, R, E>(type: RequestType2<P1, P2, R, E>, handler: RequestHandler2<P1, P2, R, E>): Disposable; onRequest<P1, P2, P3, R, E>(type: RequestType3<P1, P2, P3, R, E>, handler: RequestHandler3<P1, P2, P3, R, E>): Disposable; onRequest<P1, P2, P3, P4, R, E>(type: RequestType4<P1, P2, P3, P4, R, E>, handler: RequestHandler4<P1, P2, P3, P4, R, E>): Disposable; onRequest<P1, P2, P3, P4, P5, R, E>(type: RequestType5<P1, P2, P3, P4, P5, R, E>, handler: RequestHandler5<P1, P2, P3, P4, P5, R, E>): Disposable; onRequest<P1, P2, P3, P4, P5, P6, R, E>(type: RequestType6<P1, P2, P3, P4, P5, P6, R, E>, handler: RequestHandler6<P1, P2, P3, P4, P5, P6, R, E>): Disposable; onRequest<P1, P2, P3, P4, P5, P6, P7, R, E>(type: RequestType7<P1, P2, P3, P4, P5, P6, P7, R, E>, handler: RequestHandler7<P1, P2, P3, P4, P5, P6, P7, R, E>): Disposable; onRequest<P1, P2, P3, P4, P5, P6, P7, P8, R, E>(type: RequestType8<P1, P2, P3, P4, P5, P6, P7, P8, R, E>, handler: RequestHandler8<P1, P2, P3, P4, P5, P6, P7, P8, R, E>): Disposable; onRequest<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E>(type: RequestType9<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E>, handler: RequestHandler9<P1, P2, P3, P4, P5, P6, P7, P8, P9, R, E>): Disposable; onRequest<R, E>(method: string, handler: GenericRequestHandler<R, E>): Disposable; onRequest(handler: StarRequestHandler): Disposable; sendNotification(type: NotificationType0): void; sendNotification<P>(type: NotificationType<P>, params?: P): void; sendNotification<P1>(type: NotificationType1<P1>, p1: P1): void; sendNotification<P1, P2>(type: NotificationType2<P1, P2>, p1: P1, p2: P2): void; sendNotification<P1, P2, P3>(type: NotificationType3<P1, P2, P3>, p1: P1, p2: P2, p3: P3): void; sendNotification<P1, P2, P3, P4>(type: NotificationType4<P1, P2, P3, P4>, p1: P1, p2: P2, p3: P3, p4: P4): void; sendNotification<P1, P2, P3, P4, P5>(type: NotificationType5<P1, P2, P3, P4, P5>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): void; sendNotification<P1, P2, P3, P4, P5, P6>(type: NotificationType6<P1, P2, P3, P4, P5, P6>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): void; sendNotification<P1, P2, P3, P4, P5, P6, P7>(type: NotificationType7<P1, P2, P3, P4, P5, P6, P7>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7): void; sendNotification<P1, P2, P3, P4, P5, P6, P7, P8>(type: NotificationType8<P1, P2, P3, P4, P5, P6, P7, P8>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8): void; sendNotification<P1, P2, P3, P4, P5, P6, P7, P8, P9>(type: NotificationType9<P1, P2, P3, P4, P5, P6, P7, P8, P9>, p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9): void; sendNotification(method: string, r0?: ParameterStructures | any, ...rest: any[]): void; onNotification(type: NotificationType0, handler: NotificationHandler0): Disposable; onNotification<P>(type: NotificationType<P>, handler: NotificationHandler<P>): Disposable; onNotification<P1>(type: NotificationType1<P1>, handler: NotificationHandler1<P1>): Disposable; onNotification<P1, P2>(type: NotificationType2<P1, P2>, handler: NotificationHandler2<P1, P2>): Disposable; onNotification<P1, P2, P3>(type: NotificationType3<P1, P2, P3>, handler: NotificationHandler3<P1, P2, P3>): Disposable; onNotification<P1, P2, P3, P4>(type: NotificationType4<P1, P2, P3, P4>, handler: NotificationHandler4<P1, P2, P3, P4>): Disposable; onNotification<P1, P2, P3, P4, P5>(type: NotificationType5<P1, P2, P3, P4, P5>, handler: NotificationHandler5<P1, P2, P3, P4, P5>): Disposable; onNotification<P1, P2, P3, P4, P5, P6>(type: NotificationType6<P1, P2, P3, P4, P5, P6>, handler: NotificationHandler6<P1, P2, P3, P4, P5, P6>): Disposable; onNotification<P1, P2, P3, P4, P5, P6, P7>(type: NotificationType7<P1, P2, P3, P4, P5, P6, P7>, handler: NotificationHandler7<P1, P2, P3, P4, P5, P6, P7>): Disposable; onNotification<P1, P2, P3, P4, P5, P6, P7, P8>(type: NotificationType8<P1, P2, P3, P4, P5, P6, P7, P8>, handler: NotificationHandler8<P1, P2, P3, P4, P5, P6, P7, P8>): Disposable; onNotification<P1, P2, P3, P4, P5, P6, P7, P8, P9>(type: NotificationType9<P1, P2, P3, P4, P5, P6, P7, P8, P9>, handler: NotificationHandler9<P1, P2, P3, P4, P5, P6, P7, P8, P9>): Disposable; onNotification(method: string, handler: GenericNotificationHandler): Disposable; onNotification(handler: StarNotificationHandler): Disposable; onUnhandledNotification: Event<NotificationMessage>; onProgress<P>(type: ProgressType<P>, token: string | number, handler: NotificationHandler<P>): Disposable; sendProgress<P>(type: ProgressType<P>, token: string | number, value: P): void; onUnhandledProgress: Event<ProgressParams<any>>; trace(value: Trace, tracer: Tracer, sendNotification?: boolean): void; trace(value: Trace, tracer: Tracer, traceOptions?: TraceOptions): void; onError: Event<[Error, Message | undefined, number | undefined]>; onClose: Event<void>; listen(): void; end(): void; onDispose: Event<void>; dispose(): void; inspect(): void; } export declare function createMessageConnection(messageReader: MessageReader, messageWriter: MessageWriter, _logger?: Logger, options?: ConnectionOptions): MessageConnection; export {};
修改文件时间
将文件时间修改为当前时间的前一年
删除文件