當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript buffer.VSBuffer類代碼示例

本文整理匯總了TypeScript中vs/base/common/buffer.VSBuffer的典型用法代碼示例。如果您正苦於以下問題:TypeScript VSBuffer類的具體用法?TypeScript VSBuffer怎麽用?TypeScript VSBuffer使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了VSBuffer類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: test

	test('bufferWriteableStream - buffers data when no listener', async () => {
		const stream = writeableBufferStream();

		await timeout(0);
		stream.write(VSBuffer.fromString('Hello'));
		await timeout(0);
		stream.end(VSBuffer.fromString('World'));

		let chunks: VSBuffer[] = [];
		stream.on('data', data => {
			chunks.push(data);
		});

		let ended = false;
		stream.on('end', () => {
			ended = true;
		});

		let errors: Error[] = [];
		stream.on('error', error => {
			errors.push(error);
		});

		assert.equal(chunks.length, 1);
		assert.equal(chunks[0].toString(), 'HelloWorld');
		assert.equal(ended, true);
		assert.equal(errors.length, 0);
	});
開發者ID:PKRoma,項目名稱:vscode,代碼行數:28,代碼來源:buffer.test.ts

示例2: toBufferOrReadable

export function toBufferOrReadable(value: string | ITextSnapshot | undefined): VSBuffer | VSBufferReadable | undefined {
	if (typeof value === 'undefined') {
		return undefined;
	}

	if (typeof value === 'string') {
		return VSBuffer.fromString(value);
	}

	return new TextSnapshotReadable(value);
}
開發者ID:eamodio,項目名稱:vscode,代碼行數:11,代碼來源:textfiles.ts

示例3: createMessageOfType

export function createMessageOfType(type: MessageType): VSBuffer {
	const result = VSBuffer.alloc(1);

	switch (type) {
		case MessageType.Initialized: result.writeUInt8(1, 0); break;
		case MessageType.Ready: result.writeUInt8(2, 0); break;
		case MessageType.Terminate: result.writeUInt8(3, 0); break;
	}

	return result;
}
開發者ID:PKRoma,項目名稱:vscode,代碼行數:11,代碼來源:extensionHostProtocol.ts

示例4: isMessageOfType

export function isMessageOfType(message: VSBuffer, type: MessageType): boolean {
	if (message.byteLength !== 1) {
		return false;
	}

	switch (message.readUInt8(0)) {
		case 1: return type === MessageType.Initialized;
		case 2: return type === MessageType.Ready;
		case 3: return type === MessageType.Terminate;
		default: return false;
	}
}
開發者ID:PKRoma,項目名稱:vscode,代碼行數:12,代碼來源:extensionHostProtocol.ts

示例5: read

	read(): VSBuffer | null {
		let value = this.snapshot.read();

		// Handle preamble if provided
		if (!this.preambleHandled) {
			this.preambleHandled = true;

			if (typeof this.preamble === 'string') {
				if (typeof value === 'string') {
					value = this.preamble + value;
				} else {
					value = this.preamble;
				}
			}
		}

		if (typeof value === 'string') {
			return VSBuffer.fromString(value);
		}

		return null;
	}
開發者ID:eamodio,項目名稱:vscode,代碼行數:22,代碼來源:textfiles.ts

示例6:

		const onMessage = Event.fromNodeEventEmitter<VSBuffer>(ipcRenderer, 'ipc:message', (_, message: Buffer) => VSBuffer.wrap(message));
開發者ID:PKRoma,項目名稱:vscode,代碼行數:1,代碼來源:ipc.electron-browser.ts


注:本文中的vs/base/common/buffer.VSBuffer類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。