mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
14 lines
366 B
C#
14 lines
366 B
C#
|
|
using System.Text.Json;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.PluginIsolation.Ipc;
|
||
|
|
|
||
|
|
public delegate Task<JsonElement?> PluginIpcRequestDispatcher(
|
||
|
|
string route,
|
||
|
|
JsonElement? payload,
|
||
|
|
CancellationToken cancellationToken);
|
||
|
|
|
||
|
|
public delegate Task PluginIpcNotificationDispatcher(
|
||
|
|
string route,
|
||
|
|
JsonElement? payload,
|
||
|
|
CancellationToken cancellationToken);
|