Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

generate

deprecated

Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.

Examples

Produces sequence of numbers

import { generate } from 'rxjs';

const result = generate(0, x => x < 3, x => x + 1, x => x);

result.subscribe(x => console.log(x));

// Logs:
// 0
// 1
// 2

Use asapScheduler

import { generate, asapScheduler } from 'rxjs';

const result = generate(1, x => x < 5, x => x * 2, x => x + 1, asapScheduler);

result.subscribe(x => console.log(x));

// Logs:
// 2
// 3
// 5
@deprecated

Instead of passing separate arguments, use the options argument. Signatures taking separate arguments will be removed in v8.

function generate<T, S>(
initialState: S,
condition: ConditionFunc<S>,
iterate: IterateFunc<S>,
resultSelector: ResultFunc<S, T>,
scheduler?: SchedulerLike,
): Observable<T>;
function generate<S>(
initialState: S,
condition: ConditionFunc<S>,
iterate: IterateFunc<S>,
scheduler?: SchedulerLike,
): Observable<S>;
function generate<S>(options: GenerateBaseOptions<S>): Observable<S>;
function generate<T, S>(options: GenerateOptions<T, S>): Observable<T>;
§
generate<T, S>(initialState: S, condition: ConditionFunc<S>, iterate: IterateFunc<S>, resultSelector: ResultFunc<S, T>, scheduler?: SchedulerLike): Observable<T>
[src]

Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages.

Examples

Produces sequence of numbers

import { generate } from 'rxjs';

const result = generate(0, x => x < 3, x => x + 1, x => x);

result.subscribe(x => console.log(x));

// Logs:
// 0
// 1
// 2

Use asapScheduler

import { generate, asapScheduler } from 'rxjs';

const result = generate(1, x => x < 5, x => x * 2, x => x + 1, asapScheduler);

result.subscribe(x => console.log(x));

// Logs:
// 2
// 3
// 5

§Type Parameters

§Parameters

§
initialState: S
[src]

Initial state.

§
condition: ConditionFunc<S>
[src]

Condition to terminate generation (upon returning false).

§
iterate: IterateFunc<S>
[src]

Iteration step function.

§
resultSelector: ResultFunc<S, T>
[src]

Selector function for results produced in the sequence. (deprecated)

§
scheduler?: SchedulerLike optional
[src]

§Return Type

§

The generated sequence.

§
generate<S>(initialState: S, condition: ConditionFunc<S>, iterate: IterateFunc<S>, scheduler?: SchedulerLike): Observable<S>
[src]

Generates an Observable by running a state-driven loop that emits an element on each iteration.

Use it instead of nexting values in a for loop.

generate allows you to create a stream of values generated with a loop very similar to a traditional for loop. The first argument of generate is a beginning value. The second argument is a function that accepts this value and tests if some condition still holds. If it does, then the loop continues, if not, it stops. The third value is a function which takes the previously defined value and modifies it in some way on each iteration. Note how these three parameters are direct equivalents of three expressions in a traditional for loop: the first expression initializes some state (for example, a numeric index), the second tests if the loop can perform the next iteration (for example, if the index is lower than 10) and the third states how the defined value will be modified on every step (for example, the index will be incremented by one).

Return value of a generate operator is an Observable that on each loop iteration emits a value. First of all, the condition function is ran. If it returns true, then the Observable emits the currently stored value (initial value at the first iteration) and finally updates that value with iterate function. If at some point the condition returns false, then the Observable completes at that moment.

Optionally you can pass a fourth parameter to generate - a result selector function which allows you to immediately map the value that would normally be emitted by an Observable.

If you find three anonymous functions in generate call hard to read, you can provide a single object to the operator instead where the object has the properties: initialState, condition, iterate and resultSelector, which should have respective values that you would normally pass to generate. resultSelector is still optional, but that form of calling generate allows you to omit condition as well. If you omit it, that means condition always holds, or in other words the resulting Observable will never complete.

Both forms of generate can optionally accept a scheduler. In case of a multi-parameter call, scheduler simply comes as a last argument (no matter if there is a resultSelector function or not). In case of a single-parameter call, you can provide it as a scheduler property on the object passed to the operator. In both cases, a scheduler decides when the next iteration of the loop will happen and therefore when the next value will be emitted by the Observable. For example, to ensure that each value is pushed to the Observer on a separate task in the event loop, you could use the async scheduler. Note that by default (when no scheduler is passed) values are simply emitted synchronously.

Examples

Use with condition and iterate functions

import { generate } from 'rxjs';

const result = generate(0, x => x < 3, x => x + 1);

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!')
});

// Logs:
// 0
// 1
// 2
// 'Complete!'

Use with condition, iterate and resultSelector functions

import { generate } from 'rxjs';

const result = generate(0, x => x < 3, x => x + 1, x => x * 1000);

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!')
});

// Logs:
// 0
// 1000
// 2000
// 'Complete!'

Use with options object

import { generate } from 'rxjs';

const result = generate({
  initialState: 0,
  condition(value) { return value < 3; },
  iterate(value) { return value + 1; },
  resultSelector(value) { return value * 1000; }
});

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!')
});

// Logs:
// 0
// 1000
// 2000
// 'Complete!'

Use options object without condition function

import { generate } from 'rxjs';

const result = generate({
  initialState: 0,
  iterate(value) { return value + 1; },
  resultSelector(value) { return value * 1000; }
});

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!') // This will never run
});

// Logs:
// 0
// 1000
// 2000
// 3000
// ...and never stops.

§Type Parameters

§Parameters

§
initialState: S
[src]

Initial state.

§
condition: ConditionFunc<S>
[src]

Condition to terminate generation (upon returning false).

§
iterate: IterateFunc<S>
[src]

Iteration step function.

§
scheduler?: SchedulerLike optional
[src]

§Return Type

§

The generated sequence.

§
generate<S>(options: GenerateBaseOptions<S>): Observable<S>
[src]

Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages. The overload accepts options object that might contain initial state, iterate, condition and scheduler.

Examples

Use options object with condition function

import { generate } from 'rxjs';

const result = generate({
  initialState: 0,
  condition: x => x < 3,
  iterate: x => x + 1
});

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!')
});

// Logs:
// 0
// 1
// 2
// 'Complete!'

§Type Parameters

§Parameters

§
options: GenerateBaseOptions<S>
[src]

Object that must contain initialState, iterate and might contain condition and scheduler.

§Return Type

§

The generated sequence.

§
generate<T, S>(options: GenerateOptions<T, S>): Observable<T>
[src]

Generates an observable sequence by running a state-driven loop producing the sequence's elements, using the specified scheduler to send out observer messages. The overload accepts options object that might contain initial state, iterate, condition, result selector and scheduler.

Examples

Use options object with condition and iterate function

import { generate } from 'rxjs';

const result = generate({
  initialState: 0,
  condition: x => x < 3,
  iterate: x => x + 1,
  resultSelector: x => x
});

result.subscribe({
  next: value => console.log(value),
  complete: () => console.log('Complete!')
});

// Logs:
// 0
// 1
// 2
// 'Complete!'

§Type Parameters

§Parameters

§
options: GenerateOptions<T, S>
[src]

Object that must contain initialState, iterate, resultSelector and might contain condition and scheduler.

§Return Type

§

The generated sequence.