Class KestrelExtensions
Inherited Members
Namespace: FastEndpoints
Assembly: FastEndpoints.Messaging.Remote.dll
Syntax
public static class KestrelExtensions
Methods
ListenInterProcess(KestrelServerOptions, string, Action<ListenOptions>?)
enable inter-process-communication via unix domain sockets instead of tcp transport when everything is running on the same machine.
a unix socket will be created with the provided serviceName
Declaration
public static void ListenInterProcess(this KestrelServerOptions ko, string serviceName, Action<ListenOptions>? o = null)
Parameters
Type | Name | Description |
---|---|---|
KestrelServerOptions | ko | |
string | serviceName | a unique name to identity this service. clients must use the same name in order to connect to this server with the
|
Action<ListenOptions> | o | kestrel listen options |