Click or drag to resize
Akka.NETTestKitBaseExpectMsgT Method (NullableTimeSpan, String)
Receive one message from the test actor and assert that it is of the specified type. Wait time is bounded by the given duration, if specified; otherwise wait time is bounded by remaining time for execution of the innermost enclosing 'within' block, if inside a 'within' block; otherwise by the config value "akka.test.single-expect-default".

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public T ExpectMsg<T>(
	Nullable<TimeSpan> duration = null,
	string hint = null
)

Parameters

duration (Optional)
Type: SystemNullableTimeSpan
TBD
hint (Optional)
Type: SystemString
TBD

Type Parameters

T
TBD

Return Value

Type: T
TBD
See Also