Skip to content

Commit 89c6beb

Browse files
authored
add virtual to ping schedule methods (#45)
1 parent 5685c3a commit 89c6beb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

socket/EzyPingSchedule.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public EzyPingSchedule(EzyClient client)
2323

2424
}
2525

26-
public void start()
26+
public virtual void start()
2727
{
2828
lock(this)
2929
{
@@ -38,7 +38,7 @@ private EzyScheduleAtFixedRate newSchedule() {
3838
return answer;
3939
}
4040

41-
public void stop()
41+
public virtual void stop()
4242
{
4343
lock (this)
4444
{
@@ -68,7 +68,7 @@ private void sendPingRequest()
6868
}
6969
}
7070

71-
public void setSocketEventQueue(EzySocketEventQueue socketEventQueue)
71+
public virtual void setSocketEventQueue(EzySocketEventQueue socketEventQueue)
7272
{
7373
this.socketEventQueue = socketEventQueue;
7474
}

0 commit comments

Comments
 (0)