Add Heartbeat Function to Service, Add Timer to ClientSuite Service Startup check

This commit is contained in:
Jonathan Jenne
2019-02-18 17:06:41 +01:00
parent bc7605bdcf
commit 4229682da0
24 changed files with 259 additions and 85 deletions

View File

@@ -0,0 +1,4 @@
Public Class ClassServiceState
Public Property Online As Boolean = True
Public Property LastChecked As DateTime = DateTime.Now
End Class

View File

@@ -3,7 +3,7 @@
''' <summary>
''' Helper Class to hold User State
''' </summary>
Public Class UserState
Public Class ClassUserState
Public UserName As String
Public MachineName As String
Public Language As String

View File

@@ -1,9 +0,0 @@
Public Class ServiceState
Public Online As Boolean
Public LastChecked As DateTime
Public Sub New()
Online = True
LastChecked = DateTime.Now
End Sub
End Class