forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 4
/
creator.go
40 lines (32 loc) · 1022 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
// Copyright (C) 2019-2022, 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/constants"
)
var _ Creator = (*creator)(nil)
type Creator interface {
OutboundMsgBuilder
InboundMsgBuilder
InternalMsgBuilder
}
type creator struct {
OutboundMsgBuilder
InboundMsgBuilder
InternalMsgBuilder
}
func NewCreator(metrics prometheus.Registerer, parentNamespace string, compressionEnabled bool, maxInboundMessageTimeout time.Duration) (Creator, error) {
namespace := fmt.Sprintf("%s_codec", parentNamespace)
builder, err := newMsgBuilder(namespace, metrics, int64(constants.DefaultMaxMessageSize), maxInboundMessageTimeout)
if err != nil {
return nil, err
}
return &creator{
OutboundMsgBuilder: newOutboundBuilder(compressionEnabled, builder),
InboundMsgBuilder: newInboundBuilder(builder),
InternalMsgBuilder: NewInternalBuilder(),
}, nil
}