-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnull_visitor.go
64 lines (48 loc) · 1.21 KB
/
null_visitor.go
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
// Copyright (c) 2024 Neomantra Corp
package dbn
// NullVisitor is an implementation of all the dbn.Visitor interface.
// It is useful for copy/pasting to ones own implementation.
type NullVisitor struct {
}
func (v *NullVisitor) OnMbp0(record *Mbp0Msg) error {
return nil
}
func (v *NullVisitor) OnMbp10(record *Mbp10Msg) error {
return nil
}
func (v *NullVisitor) OnMbp1(record *Mbp1Msg) error {
return nil
}
func (v *NullVisitor) OnMbo(record *MboMsg) error {
return nil
}
func (v *NullVisitor) OnOhlcv(record *OhlcvMsg) error {
return nil
}
func (v *NullVisitor) OnCbbo(record *CbboMsg) error {
return nil
}
func (v *NullVisitor) OnImbalance(record *ImbalanceMsg) error {
return nil
}
func (v *NullVisitor) OnStatMsg(record *StatMsg) error {
return nil
}
func (v *NullVisitor) OnStatusMsg(record *StatusMsg) error {
return nil
}
func (v *NullVisitor) OnInstrumentDefMsg(record *InstrumentDefMsg) error {
return nil
}
func (v *NullVisitor) OnErrorMsg(record *ErrorMsg) error {
return nil
}
func (v *NullVisitor) OnSystemMsg(record *SystemMsg) error {
return nil
}
func (v *NullVisitor) OnSymbolMappingMsg(record *SymbolMappingMsg) error {
return nil
}
func (v *NullVisitor) OnStreamEnd() error {
return nil
}