congqixia cb7f2fa6fd
enhance: Use v2 package name for pkg module (#39990)
Related to #39095

https://go.dev/doc/modules/version-numbers

Update pkg version according to golang dep version convention

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-02-22 23:15:58 +08:00

34 lines
747 B
Go

package helper
import (
"go.uber.org/zap"
"github.com/milvus-io/milvus/pkg/v2/log"
"github.com/milvus-io/milvus/pkg/v2/streaming/util/types"
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls"
)
// NewWALHelper creates a new WALHelper.
func NewWALHelper(opt *walimpls.OpenOption) *WALHelper {
return &WALHelper{
logger: log.With(zap.Any("channel", opt.Channel)),
channel: opt.Channel,
}
}
// WALHelper is a helper for WAL implementation.
type WALHelper struct {
logger *log.MLogger
channel types.PChannelInfo
}
// Channel returns the channel of the WAL.
func (w *WALHelper) Channel() types.PChannelInfo {
return w.channel
}
// Log returns the logger of the WAL.
func (w *WALHelper) Log() *log.MLogger {
return w.logger
}