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


TypeScript WritableStream.write函數代碼示例

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


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

示例1: function

			return stream.close().then(function () {
				assert.strictEqual(stream.state, State.Closed, 'Stream should be in closed state');

				return stream.write('abc').then(function () {
					assert.fail(null, null, 'Write operation on closed stream should not succeed');
				}, function (error: Error) {
					assert.strictEqual(stream.state, State.Closed, 'Stream should be in closed state');
				});
			});
開發者ID:GionHobby,項目名稱:core,代碼行數:9,代碼來源:WritableStream.ts

示例2: registerSuite

import { getApproximateByteSize } from 'src/streams/util';

const ASYNC_TIMEOUT = 1000;

registerSuite({
	name: 'ByteLengthQueuingStrategy',

	size() {
		let dfd = this.async(ASYNC_TIMEOUT);
		let sink = new ManualSink<ArrayBuffer>();

		let stream = new WritableStream<ArrayBuffer>(sink, new ByteLengthQueuingStrategy<ArrayBuffer>({
			highWaterMark: 2 * 1024
		}));

		let promise = stream.write(new ArrayBuffer(1024));
		assert.strictEqual(stream.state, State.Writable);

		stream.write(new ArrayBuffer(1024));
		assert.strictEqual(stream.state, State.Writable);

		stream.write(new ArrayBuffer(1));
		assert.strictEqual(stream.state, State.Waiting);

		setTimeout(function () {
			sink.next();
		}, 20);

		promise.then(dfd.callback(function () {
			assert.strictEqual(stream.state, State.Writable);
		}), function (error: Error) {
開發者ID:jdonaghue,項目名稱:core,代碼行數:31,代碼來源:ByteLengthQueuingStrategy.ts

示例3: registerSuite

import ManualSink from './helpers/ManualSink';

const ASYNC_TIMEOUT = 1000;

registerSuite({
	name: 'CountQueuingStrategy',

	size(this: any) {
		let dfd = this.async(ASYNC_TIMEOUT);
		let sink = new ManualSink<string>();

		let stream = new WritableStream<string>(sink, new CountQueuingStrategy<string>({
			highWaterMark: 2
		}));

		let promise = stream.write('test value 1');
		assert.strictEqual(stream.state, State.Writable);

		stream.write('test value 2');
		assert.strictEqual(stream.state, State.Writable);

		stream.write('test value 3');
		assert.strictEqual(stream.state, State.Waiting);

		setTimeout(function () {
			sink.next();
		}, 20);

		promise.then(dfd.callback(function () {
			assert.strictEqual(stream.state, State.Writable);
		}), function (error: Error) {
開發者ID:GionHobby,項目名稱:core,代碼行數:31,代碼來源:CountQueuingStrategy.ts

示例4: Error

				return Promise.reject(new Error('test error'));
			};

			stream = new WritableStream(sink, strategy);

			stream.close().then(function () {
				dfd.reject(new Error('stream.close should reject with error'));
			}, dfd.callback(function (error: Error) {
				assert.strictEqual(stream.state, State.Errored);
			}));
		},

		'blocks write'() {
			stream.close();

			return stream.write('abc').then(function () {
				throw new Error('Closed stream should not be writable');
			}, function (error: Error) {
				return;
			});
		},

		'calls sink.close'(this: any) {
			let dfd = this.async(ASYNC_TIMEOUT);

			sink.close = dfd.callback(function () {});
			stream = new WritableStream(sink, strategy);
			stream.close();
		},

		'handles sink.close error'() {
開發者ID:GionHobby,項目名稱:core,代碼行數:31,代碼來源:WritableStream.ts


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