milvus/pkg/streaming/walimpls/opener.go
chyezh d2bc4a53be
enhance: implement rmq and pulsar as wal (#34046)
issue: #33285

- use reader but not consumer for pulsar
- advanced test framework
- move some streaming related package into pkg

---------

Signed-off-by: chyezh <chyezh@outlook.com>
2024-06-27 15:11:05 +08:00

22 lines
469 B
Go

package walimpls
import (
"context"
"github.com/milvus-io/milvus/pkg/streaming/util/types"
)
// OpenOption is the option for allocating wal impls instance.
type OpenOption struct {
Channel types.PChannelInfo // Channel to open.
}
// OpenerImpls is the interface for build WALImpls instance.
type OpenerImpls interface {
// Open open a WALImpls instance.
Open(ctx context.Context, opt *OpenOption) (WALImpls, error)
// Close release the resources.
Close()
}