当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript kefir.Property类代码示例

本文整理汇总了TypeScript中kefir.Property的典型用法代码示例。如果您正苦于以下问题:TypeScript Property类的具体用法?TypeScript Property怎么用?TypeScript Property使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了Property类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: import

const exec = ({ WebpackService }: typeof import('../../services')) => (
  action$: Stream<Action, never>,
  state$: Property<State, never>
): Stream<Action, never> =>
  state$
    .take(1)
    .filter(state => Nullable.isSome(state.rc))
    .flatMap(state =>
      Kefir.concat<Action, never>([
        Kefir.constant(webpackBuild.request()),
        WebpackService.create(selectWebpackConfig(state))
          .flatMap(compiler =>
            state.watch ? compiler.watch() : compiler.run()
          )
          .map(webpackBuild.success)
          .flatMapErrors(error => Kefir.constant(webpackBuild.failure(error)))
      ])
    );
开发者ID:valtech-nyc,项目名称:brookjs,代码行数:18,代码来源:exec.ts

示例2:

	let observable06: Stream<number, void> = Kefir.sequentially(100, [1, 2, 3]).flatMapLatest(x => Kefir.interval(40, x).take(4));
	let observable07: Stream<number, void> = Kefir.sequentially(100, [1, 2, 3]).flatMapFirst(x => Kefir.interval(40, x).take(4));
	let observable08: Stream<number, void> = Kefir.sequentially(100, [1, 2, 3]).flatMapConcat(x => Kefir.interval(40, x).take(4));
	let observable09: Stream<number, void> = Kefir.sequentially(100, [1, 2, 3]).flatMapConcurLimit(x => Kefir.interval(40, x).take(6), 2);
	let observable10: Stream<number, void> = Kefir.sequentially(100, [1, 2]).valuesToErrors().flatMapErrors(x => Kefir.interval(40, x).take(2));
}

// Combine two observables
{
	{
		let foo: Stream<number, void>  = Kefir.sequentially(100, [1, 2, 3, 4, 5, 6, 7, 8]);
		let bar: Property<boolean, void>  = Kefir.sequentially(200, [false, true, false]).delay(40).toProperty(() => true);
		let observable01: Stream<number, void> = foo.filterBy<void>(bar);
	}
	{
		let a: Property<number, void>  = Kefir.sequentially(200, [2, 3]).toProperty(() => 1);
		let b: Stream<number, void>  = Kefir.interval(100, 0).delay(40).take(5);
		let observable02: Property<number, void> = a.sampledBy<number, void, number>(b)
	}
	{
		let foo: Stream<number, void>  = Kefir.sequentially(100, [1, 2, 3, 4]);
		let bar: Stream<number, void>  = Kefir.later(250, 0);
		let observable03: Stream<number, void> = foo.skipUntilBy<number, void>(bar);
	}
	{
		let foo: Stream<number, void>  = Kefir.sequentially(100, [1, 2, 3, 4]);
		let bar: Stream<number, void>  = Kefir.later(250, 0);
		let observable04: Stream<number, void> = foo.takeUntilBy<number, void>(bar);
	}
	{
		let foo: Stream<number, void>  = Kefir.sequentially(100, [1, 2, 3, 4, 5, 6, 7, 8]).delay(40);
开发者ID:ErykB2000,项目名称:DefinitelyTyped,代码行数:31,代码来源:kefir-tests.ts


注:本文中的kefir.Property类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。