-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import 'dart:async'; | ||
|
||
import 'package:event/event.dart'; | ||
import 'package:walletconnect_flutter_v2/apis/core/heartbit/i_heartbeat.dart'; | ||
|
||
class HeartBeat implements IHeartBeat { | ||
Timer? _heartbeatTimer; | ||
|
||
@override | ||
int interval; | ||
|
||
HeartBeat({this.interval = 5}); | ||
|
||
@override | ||
void init() { | ||
if (_heartbeatTimer != null) return; | ||
_heartbeatTimer = Timer.periodic( | ||
Duration(seconds: interval), | ||
(timer) => onPulse.broadcast(), | ||
); | ||
} | ||
|
||
@override | ||
void stop() { | ||
_heartbeatTimer?.cancel(); | ||
_heartbeatTimer = null; | ||
} | ||
|
||
@override | ||
final Event<EventArgs> onPulse = Event(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import 'package:event/event.dart'; | ||
|
||
abstract class IHeartBeat { | ||
abstract int interval; | ||
abstract final Event onPulse; | ||
|
||
void init(); | ||
void stop(); | ||
} |