Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 625 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 625 Bytes

Deadline

The Deadline example illustrates how to use the deadline interceptor to add an invocation deadline and shows how invocations that exceed the deadline fail with TimeoutException. It also demonstrates how the IDeadlineFeature can be used to set the deadline for an invocation.

You can build the client and server applications with:

dotnet build

First start the Server program:

cd Server
dotnet run

In a separate terminal, start the Client program:

cd Client
dotnet run