You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const users: Collection<User> = new Collection(User);
const newUsers: Collection<NewUser> = new Collection(NewUser);
const transformer: DuplexStream = ....;
//This should read from users, transform using the transformer and then write to newUsers.
users
.pipe(transformer)
.pipe(newUsers);
.pipe() should produce a ReadStream that makes use of .find with no prefix.
Collection itself should implement WritableStream so it can be used as a value into .pipe() as a write destination.
ReferenceList should have a .pipe() method to produce a ReadStream which will produce documents starting with the prefix defined in .find() provided to get the ReferenceList.
The text was updated successfully, but these errors were encountered:
.pipe()
should produce aReadStream
that makes use of .find with no prefix.WritableStream
so it can be used as a value into.pipe()
as a write destination..pipe()
method to produce aReadStream
which will produce documents starting with the prefix defined in.find()
provided to get the ReferenceList.The text was updated successfully, but these errors were encountered: