fanout method

  1. @override
Future<int> fanout(
  1. String topic
)
override

Returns zero because there is no fan-out beyond the calling isolate.

Implementation

@override
Future<int> fanout(String topic) async {
  return 0;
}