Interface ICallGateSubscriber<TRet>
This class facilitates inter-plugin communication.
Assembly: Dalamud.dll
Declaration
public interface ICallGateSubscriber<TRet> : ICallGateSubscriber
Methods
Subscribe(Action)
Registers a System.Delegate (of type System.Action1) that will be called when the providing plugin calls Dalamud.Plugin.Ipc.ICallGateProvider1.SendMessage. This method can be used to receive notifications
of events or data updates from a specific plugin.
Declaration
void Subscribe(Action action)
Parameters
| Type | Name | Description |
|---|---|---|
System.Action | action | Action to subscribe. |
See Also
Dalamud.Plugin.Ipc.Internal.CallGatePubSubBase.Unsubscribe(System.Delegate)