ParSeq
is a data type that represents some notion of "events" that can take place in parallel or in sequence. For example, a ParSeq
parameterized on some error type could be used to model the potentially multiple ways that an application can fail. On the other hand, a ParSeq` parameterized on some request type could be used to model a collection of requests to external data sources, some of which could be executed in parallel and some of which must be executed sequentially.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
- Self type
-
Members list
Value members
Concrete methods
Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events in parallel with that collection of events.
Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events in parallel with that collection of events.
Attributes
A symbolic alias for zipRight
.
A symbolic alias for zipRight
.
Attributes
Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events followed by that collection of events.
Combines this collection of events with that collection of events to return a new collection of events that represents this collection of events followed by that collection of events.
Attributes
A symbolic alias for zipLeft
.
A symbolic alias for zipLeft
.
Attributes
A symbolic alias for zip
.
A symbolic alias for zip
.
Attributes
Maps the events in this collection of events to the specified constant value.
Maps the events in this collection of events to the specified constant value.
Attributes
Returns the first event in this collection of events. If multiple events occur in parallel and before any other events then any of these events may be returned.
Returns the first event in this collection of events. If multiple events occur in parallel and before any other events then any of these events may be returned.
Attributes
Constructs a new collection of events for each event in this collection of events, collecting them back into a single collection of events.
Constructs a new collection of events for each event in this collection of events, collecting them back into a single collection of events.
Attributes
Flattens a collection of collections of events into a single collection of events.
Flattens a collection of collections of events into a single collection of events.
Attributes
Folds over the events in this collection of events using the specified functions.
Folds over the events in this collection of events using the specified functions.
Attributes
Performs the specified effectual function for each event in this collection of events, collecting them back into a single collection of events.
Performs the specified effectual function for each event in this collection of events, collecting them back into a single collection of events.
Attributes
Transforms the type of events in this collection of events with the specified function.
Transforms the type of events in this collection of events with the specified function.
Attributes
Converts this collection of events to a NonEmptyMultiSet
of events, discarding information about the sequential structure of events.
Converts this collection of events to a NonEmptyMultiSet
of events, discarding information about the sequential structure of events.
Attributes
Combines this collection of events with that collection of events to return the Cartesian product of events, combining the elements into a tuple.
Combines this collection of events with that collection of events to return the Cartesian product of events, combining the elements into a tuple.
Attributes
Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from this collection.
Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from this collection.
Attributes
Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from that collection.
Combines this collection of events with that collection of events to return the Cartesian product of events, keeping only the events from that collection.
Attributes
Combines this collection of events with that collection of events to return the Cartesian product of events using the specified function.
Combines this collection of events with that collection of events to return the Cartesian product of events using the specified function.