Interface ICallGateSubscriber<T1, T2, T3, T4, T5, T6, T7, TRet>
This class facilitates inter-plugin communication.
Assembly: Dalamud.dll
Declaration
public interface ICallGateSubscriber<T1, T2, T3, T4, T5, T6, T7, TRet>
Methods
Subscribe(Action<T1, T2, T3, T4, T5, T6, T7>)
Registers a System.Delegate (of type System.Action%601) that will be called when the providing
plugin calls Dalamud.Plugin.Ipc.ICallGateProvider%601.SendMessage. This method can be used to receive notifications
of events or data updates from a specific plugin.
Declaration
void Subscribe(Action<T1, T2, T3, T4, T5, T6, T7> action)
Parameters
| Type | Name | Description |
|---|---|---|
System.Action<<T1>,<T2>,<T3>,<T4>,<T5>,<T6>,<T7>> | action | Action to subscribe. |