getSubscriptions method

Future<List<Subscription>> getSubscriptions()

Inquiry method that returns a list containing all the Subscription instances that are currently "active" on this LightstreamerClient.

Internal second-level Subscription are not included.

Returns A list, containing all the Subscription currently "active" on this LightstreamerClient.
The list can be empty.

Implementation

Future<List<Subscription>> getSubscriptions() async {
  return await NativeBridge.instance.client_getSubscriptions(_id);
}