-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathebk_daemon.e
More file actions
60 lines (44 loc) · 809 Bytes
/
ebk_daemon.e
File metadata and controls
60 lines (44 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
note
description: "EBK_DAEMON -- Parent to daemon threads"
author: "Howard Thomson"
date: "$22/Apr-2022$"
TODO: "[
The messaging network addresses need to be shared between
both sides of each message channel.
]"
deferred class
EBK_DAEMON
inherit
EBK_SHARED_SIGNAL
EBK_SHARED_CONFIGURATION
feature
Daemon_name: STRING deferred end
Default_config_file: STRING deferred end
Default_nng_socket_path: STRING deferred end
feature -- Execution
execute
do
read_configuration
open_sockets
uv_loop_startup
daemon_exit
end
read_configuration
deferred
end
open_sockets
deferred
end
uv_loop_startup
deferred
end
daemon_exit
deferred
end
feature -- Reporting
report (a_string: STRING)
-- Temp: see EAC report window
do
print (a_string)
end
end