forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 4
/
creator.go
50 lines (41 loc) · 990 Bytes
/
creator.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
// Copyright (C) 2019-2023, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package message
import (
"fmt"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/MetalBlockchain/metalgo/utils/compression"
"github.com/MetalBlockchain/metalgo/utils/logging"
)
var _ Creator = (*creator)(nil)
type Creator interface {
OutboundMsgBuilder
InboundMsgBuilder
}
type creator struct {
OutboundMsgBuilder
InboundMsgBuilder
}
func NewCreator(
log logging.Logger,
metrics prometheus.Registerer,
parentNamespace string,
compressionType compression.Type,
maxMessageTimeout time.Duration,
) (Creator, error) {
namespace := fmt.Sprintf("%s_codec", parentNamespace)
builder, err := newMsgBuilder(
log,
namespace,
metrics,
maxMessageTimeout,
)
if err != nil {
return nil, err
}
return &creator{
OutboundMsgBuilder: newOutboundBuilder(compressionType, builder),
InboundMsgBuilder: newInboundBuilder(builder),
}, nil
}