bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
Topic.scala
(592B)
1 package inc.pyc.chimera
2
3 /**
4 * Subscription Topic so a client comet can
5 * register for updates with the main bus.
6 */
7 object Topic {
8
9 /**
10 * Syncs the state of the machine with the client.
11 */
12 val stateUpdate = "stateUpdate"
13
14 /**
15 * Syncs the data of the machine with the client.
16 */
17 val dataUpdate = "dataUpdate"
18
19 /**
20 * Update of price per bitcoin.
21 */
22 val priceUpdate = "priceUpdate"
23
24 /**
25 * Update of configurations.
26 */
27 val configUpdate = "configUpdate"
28
29 /**
30 * Update of current session.
31 */
32 val sessionUpdate = "sessionUpdate"
33 }