fluid ~master (2025-03-22T14:27:06.5478146)
Dub
Repo
AssertPipe
fluid
future
pipe
Undocumented in source.
@
safe
class
AssertPipe : Subscriber!Ts, Publisher!(), Publisher!Ts(
Ts
...
)
if
(
Ts
.
length
!= 0
) {
Tuple
!
Ts
expected
;
string
file
;
size_t
lineNumber
;
this
(Ts expected, string file, size_t lineNumber);
void
subscribe
(Subscriber!() subscriber);
void
subscribe
(Subscriber!Ts subscriber);
void
opCall
(Ts received);
}
Constructors
this
this
(Ts expected, string file, size_t lineNumber)
Undocumented in source.
Members
Functions
opCall
void
opCall
(Ts received)
Undocumented in source. Be warned that the author may not have intended to support it.
subscribe
void
subscribe
(Subscriber!() subscriber)
Undocumented in source. Be warned that the author may not have intended to support it.
subscribe
void
subscribe
(Subscriber!Ts subscriber)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
expected
Tuple
!
Ts
expected
;
Value this pipe expects to receive.
file
string
file
;
Undocumented in source.
lineNumber
size_t
lineNumber
;
Undocumented in source.
Meta
Source
See Implementation
fluid
future
pipe
aliases
AllPublishers
AllSubscribers
MultiPublisher
Publisher
classes
AssertPipe
JoinPublisher
MultiPublisherImpl
Pipe
enums
isPublisher
isSubscriber
functions
join
pipe
thenAssertEquals
interfaces
Subscriber
structs
Event
templates
PipeContent
PublisherType
ToParameter