2026-08-11 23:03:55 +08:00
|
|
|
namespace LanMountainDesktop.AirAppSdk;
|
2026-04-22 14:55:30 +08:00
|
|
|
|
2026-08-11 23:03:55 +08:00
|
|
|
public interface IAirAppPublicIpcBuilder
|
2026-04-22 14:55:30 +08:00
|
|
|
{
|
2026-08-11 23:03:55 +08:00
|
|
|
IAirAppPublicIpcBuilder AddService<TContract>(
|
2026-04-22 14:55:30 +08:00
|
|
|
string? objectId = null,
|
|
|
|
|
IEnumerable<string>? notifyIds = null)
|
|
|
|
|
where TContract : class;
|
|
|
|
|
|
2026-08-11 23:03:55 +08:00
|
|
|
IAirAppPublicIpcBuilder AddService(
|
2026-04-22 14:55:30 +08:00
|
|
|
Type contractType,
|
|
|
|
|
object implementation,
|
|
|
|
|
string? objectId = null,
|
|
|
|
|
IEnumerable<string>? notifyIds = null);
|
|
|
|
|
}
|