ReadableBeaconWrapUtils<T> extension
- on
Methods
-
buffer(
int count, {String? name, bool synchronous = true}) → BufferedCountBeacon< T> -
Available on ReadableBeacon<
Returns a BufferedCountBeacon that wraps this Beacon.T> , provided by the ReadableBeaconWrapUtils extension -
bufferTime(
Duration duration, {String? name, bool synchronous = true}) → BufferedTimeBeacon< T> -
Available on ReadableBeacon<
Returns a BufferedTimeBeacon that wraps this Beacon.T> , provided by the ReadableBeaconWrapUtils extension -
debounce(
Duration duration, {String? name, bool synchronous = true}) → DebouncedBeacon< T> -
Available on ReadableBeacon<
Returns a DebouncedBeacon that wraps this Beacon.T> , provided by the ReadableBeaconWrapUtils extension -
filter(
bool filter(T?, T), {String? name, bool lazyBypass = true, bool synchronous = true}) → FilteredBeacon< T> -
Available on ReadableBeacon<
Returns a FilteredBeacon that wraps this Beacon.T> , provided by the ReadableBeaconWrapUtils extension -
map<
O> (MapFilter< T, O> mapFN, {String? name, bool synchronous = true}) → ReadableBeacon<O> -
Available on ReadableBeacon<
Returns a ReadableBeacon that wraps a Beacon and tranforms its values.T> , provided by the ReadableBeaconWrapUtils extension -
throttle(
Duration duration, {bool dropBlocked = true, bool synchronous = true, String? name}) → ThrottledBeacon< T> -
Available on ReadableBeacon<
Returns a ThrottledBeacon that wraps this Beacon.T> , provided by the ReadableBeaconWrapUtils extension