notify method

Future<bool> notify(
  1. T val
)

返回是否触发执行

Implementation

Future<bool> notify(T val) {
  list.add(val);
  return onRunEvent();
}