Click or drag to resize
Akka.NETTestKitBase.ExpectMsg<T> Method (T, Func<T, T, Boolean>, Nullable<TimeSpan>, String)
Receive one message from the test actor and assert that it is equal to the expected value, according to the specified comparer function. 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>(
	T expected,
	Func<T, T, bool> comparer,
	Nullable<TimeSpan> timeout = null,
	string hint = null
)

Parameters

expected
Type: T
TBD
comparer
Type: System.Func<T, T, Boolean>
TBD
timeout (Optional)
Type: System.Nullable<TimeSpan>
TBD
hint (Optional)
Type: System.String
TBD

Type Parameters

T
TBD

Return Value

Type: T
TBD
See Also