mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-15 03:20:30 +00:00
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace osu.Framework.Platform
|
|
{
|
|
public interface IIpcHost
|
|
{
|
|
/// <summary>
|
|
/// Invoked when a message is received by this IPC server.
|
|
/// Returns either a response in the form of an <see cref="IpcMessage"/>, or <c>null</c> for no response.
|
|
/// </summary>
|
|
event Func<IpcMessage, IpcMessage?>? MessageReceived;
|
|
|
|
/// <summary>
|
|
/// Asynchronously send a message to the IPC server.
|
|
/// </summary>
|
|
/// <param name="ipcMessage">The message to send.</param>
|
|
Task SendMessageAsync(IpcMessage ipcMessage);
|
|
|
|
/// <summary>
|
|
/// Asynchronously send a message to the IPC server and receive a response.
|
|
/// </summary>
|
|
/// <param name="message">The message to send.</param>
|
|
/// <returns>The response from the server.</returns>
|
|
Task<IpcMessage?> SendMessageWithResponseAsync(IpcMessage message);
|
|
}
|
|
}
|