-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.fsx
72 lines (68 loc) · 1.09 KB
/
types.fsx
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
61
62
63
64
65
66
67
68
69
70
71
72
open Akka.Actor
open Akka.Configuration
open Akka.FSharp
open System.Collections.Generic
open System.Collections.Concurrent
type register = {
Client:int;
Address:ActorSelection;
}
type setVals={
TotalUsers:int;
}
type initUsers={
Boss:IActorRef
}
type other={
Message: string
}
type RetF={
FolT: ConcurrentDictionary<int, int list>
}
type Register1 = {
Client:int;
Message: string;
}
type Initialize ={
Init: string;
}
type Register ={
b: IActorRef;
}
type Done ={
Done: string;
}
type RouteTweet ={
t: string;
c: int;
fl: int;
}
type Request ={
// a: IActorRef;
cid: int;
}
type StopCode ={
Stop: string
}
// type TweetWithHashtag ={
// h: string;
// }
// type TweetWithMention ={
// id: int;
// }
type RetQ={
ReqQ:Queue<int*string>
uid:int;
}
type Stats={
stat: string
}
type CallHM={
callH: string
}
type HashSend={
hashTtb: ConcurrentDictionary<string, string list>
}
type MentionSend={
mentionTtb: ConcurrentDictionary<int, string list>
}