MatchBuilder<(Of <(<'TItem>)>)>..::..MatchAny Method

Adds a handler that is invoked no matter the type the item being matched is.

Remarks


Note that since this matches all items, no more handlers may be added after this one.

Remarks


Note that if a previous added handler handled the item, this handler will not be invoked.

Namespace:  Akka.Tools.MatchHandler
Assembly:  Akka (in Akka.dll)

Syntax


public void MatchAny(
	Action<TItem> handler
)
Public Sub MatchAny ( _
	handler As Action(Of TItem) _
)
public:
void MatchAny(
	Action<TItem>^ handler
)

Parameters

handler
Type: Action<(Of <(<'TItem>)>)>