using System.Threading; using System.Threading.Tasks; namespace xPushService.Interfaces { public interface IXBaseHub { Task SendCustomAction( string actionName, string payLoad, CancellationToken cancellationToken = default ); } }