Documentation ¶
Index ¶
- Constants
- Variables
- func MockBufferSize(size int) discovery.Option
- type AddrsFilter
- type AdvertiseOption
- type AdvertiseOptions
- type DiscoveryAdaptater
- type DiscoveryDriver
- func (d *DiscoveryDriver) Advertise(ctx context.Context, topic string, opts ...discovery.Option) (time.Duration, error)
- func (d *DiscoveryDriver) FindPeers(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (d *DiscoveryDriver) Name() string
- func (d *DiscoveryDriver) Subscribe(_ context.Context, _ string, _ ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (d *DiscoveryDriver) Unregister(_ context.Context, _ string, _ ...discovery.Option) error
- type IDriver
- type LocalDiscovery
- func (ld *LocalDiscovery) Advertise(ctx context.Context, cid string, opts ...discovery.Option) (time.Duration, error)
- func (ld *LocalDiscovery) Close() error
- func (ld *LocalDiscovery) FindPeers(ctx context.Context, cid string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (ld *LocalDiscovery) Name() string
- func (ld *LocalDiscovery) Subscribe(ctx context.Context, cid string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (ld *LocalDiscovery) Unregister(ctx context.Context, cid string, _ ...discovery.Option) error
- type MockDriverServer
- func (s *MockDriverServer) Advertise(topic string, info peer.AddrInfo, ttl time.Duration)
- func (s *MockDriverServer) Client(h host.Host) IDriver
- func (s *MockDriverServer) Exist(topic string, p peer.ID) (ok bool)
- func (s *MockDriverServer) FindPeers(topic string, limit int) <-chan peer.AddrInfo
- func (s *MockDriverServer) Subscribe(ctx context.Context, topic string, buffsize int) <-chan peer.AddrInfo
- func (s *MockDriverServer) Unregister(ctx context.Context, topic string, p peer.ID)
- func (s *MockDriverServer) WaitForPeer(topic string, p peer.ID, timeout time.Duration) (err error)
- type MockIDriverClient
- func (s *MockIDriverClient) Advertise(ctx context.Context, topic string, opts ...discovery.Option) (time.Duration, error)
- func (s *MockIDriverClient) FindPeers(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (s *MockIDriverClient) Name() string
- func (s *MockIDriverClient) Subscribe(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
- func (s *MockIDriverClient) Unregister(ctx context.Context, topic string, opts ...discovery.Option) error
- type NetworkUpdate
- type PeersUpdate
- type Record
- func (*Record) Descriptor() ([]byte, []int)
- func (m *Record) GetCid() string
- func (m *Record) GetExpire() int64
- func (m *Record) Marshal() (dAtA []byte, err error)
- func (m *Record) MarshalTo(dAtA []byte) (int, error)
- func (m *Record) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*Record) ProtoMessage()
- func (m *Record) Reset()
- func (m *Record) Size() (n int)
- func (m *Record) String() string
- func (m *Record) Unmarshal(dAtA []byte) error
- func (m *Record) XXX_DiscardUnknown()
- func (m *Record) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Record) XXX_Merge(src proto.Message)
- func (m *Record) XXX_Size() int
- func (m *Record) XXX_Unmarshal(b []byte) error
- type Records
- func (*Records) Descriptor() ([]byte, []int)
- func (m *Records) GetRecords() []*Record
- func (m *Records) Marshal() (dAtA []byte, err error)
- func (m *Records) MarshalTo(dAtA []byte) (int, error)
- func (m *Records) MarshalToSizedBuffer(dAtA []byte) (int, error)
- func (*Records) ProtoMessage()
- func (m *Records) Reset()
- func (m *Records) Size() (n int)
- func (m *Records) String() string
- func (m *Records) Unmarshal(dAtA []byte) error
- func (m *Records) XXX_DiscardUnknown()
- func (m *Records) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Records) XXX_Merge(src proto.Message)
- func (m *Records) XXX_Size() int
- func (m *Records) XXX_Unmarshal(b []byte) error
- type Service
- func (s *Service) Close() error
- func (s *Service) FindPeers(ctx context.Context, topic string) <-chan peer.AddrInfo
- func (s *Service) GetProcess() uint32
- func (s *Service) LookupPeers(ctx context.Context, topic string) error
- func (s *Service) StartAdvertises(ctx context.Context, topic string, opts ...AdvertiseOption) error
- func (s *Service) Subscribe(topic string) *Subscription
- func (s *Service) Unregister(ctx context.Context, topic string) error
- func (s *Service) WatchPeers(ctx context.Context, topic string) <-chan peer.AddrInfo
- func (s *Service) WatchTopic(ctx context.Context, topic string) (err error)
- type Subscription
Constants ¶
View Source
const (
// LocalDiscoveryName is the name of the localdiscovery driver
LocalDiscoveryName = "localdisc"
)
Variables ¶
View Source
var ( ErrInvalidLengthRecords = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowRecords = fmt.Errorf("proto: integer overflow") ErrUnexpectedEndOfGroupRecords = fmt.Errorf("proto: unexpected end of group") )
View Source
var ErrNotSupported = fmt.Errorf("not supported")
Functions ¶
func MockBufferSize ¶ added in v2.436.0
Types ¶
type AddrsFilter ¶ added in v2.436.0
type AddrsFilter = bhost.AddrsFactory
type AdvertiseOption ¶ added in v2.436.0
type AdvertiseOption func(opts *AdvertiseOptions) error
func StartAdvertisesFilterDrivers ¶ added in v2.436.0
func StartAdvertisesFilterDrivers(drivers ...string) AdvertiseOption
type AdvertiseOptions ¶ added in v2.436.0
type AdvertiseOptions struct {
Filters map[string]struct{}
}
type DiscoveryAdaptater ¶ added in v2.436.0
type DiscoveryAdaptater struct {
// contains filtered or unexported fields
}
func NewDiscoveryAdaptater ¶ added in v2.436.0
func NewDiscoveryAdaptater(logger *zap.Logger, service *Service) *DiscoveryAdaptater
func (*DiscoveryAdaptater) Close ¶ added in v2.436.0
func (a *DiscoveryAdaptater) Close() error
type DiscoveryDriver ¶ added in v2.436.0
func (*DiscoveryDriver) Advertise ¶ added in v2.436.0
func (d *DiscoveryDriver) Advertise(ctx context.Context, topic string, opts ...discovery.Option) (time.Duration, error)
discovery advertise
func (*DiscoveryDriver) FindPeers ¶ added in v2.436.0
func (d *DiscoveryDriver) FindPeers(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
discovery find peers
func (*DiscoveryDriver) Name ¶ added in v2.436.0
func (d *DiscoveryDriver) Name() string
func (*DiscoveryDriver) Unregister ¶ added in v2.436.0
type IDriver ¶ added in v2.436.0
type IDriver interface { Name() string Subscribe(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error) Unregister(ctx context.Context, topic string, opts ...discovery.Option) error // discovery Advertise(ctx context.Context, ns string, opts ...discovery.Option) (time.Duration, error) FindPeers(ctx context.Context, ns string, opts ...discovery.Option) (<-chan peer.AddrInfo, error) }
func NewDiscoveryDriver ¶ added in v2.436.0
func NewRendezvousDiscovery ¶
type LocalDiscovery ¶ added in v2.365.0
type LocalDiscovery struct {
// contains filtered or unexported fields
}
func NewLocalDiscovery ¶ added in v2.94.0
func (*LocalDiscovery) Close ¶ added in v2.365.0
func (ld *LocalDiscovery) Close() error
func (*LocalDiscovery) Name ¶ added in v2.436.0
func (ld *LocalDiscovery) Name() string
func (*LocalDiscovery) Unregister ¶ added in v2.365.0
type MockDriverServer ¶
type MockDriverServer struct {
// contains filtered or unexported fields
}
func NewMockDriverServer ¶ added in v2.436.0
func NewMockDriverServer() *MockDriverServer
func (*MockDriverServer) Client ¶ added in v2.436.0
func (s *MockDriverServer) Client(h host.Host) IDriver
func (*MockDriverServer) Exist ¶ added in v2.436.0
func (s *MockDriverServer) Exist(topic string, p peer.ID) (ok bool)
func (*MockDriverServer) FindPeers ¶
func (s *MockDriverServer) FindPeers(topic string, limit int) <-chan peer.AddrInfo
func (*MockDriverServer) Unregister ¶
func (*MockDriverServer) WaitForPeer ¶ added in v2.436.0
type MockIDriverClient ¶ added in v2.436.0
type MockIDriverClient struct {
// contains filtered or unexported fields
}
func (*MockIDriverClient) Name ¶ added in v2.436.0
func (s *MockIDriverClient) Name() string
func (*MockIDriverClient) Unregister ¶ added in v2.436.0
type NetworkUpdate ¶ added in v2.277.0
type NetworkUpdate struct {
// contains filtered or unexported fields
}
func NewNetworkUpdate ¶ added in v2.277.0
func (*NetworkUpdate) Close ¶ added in v2.277.0
func (n *NetworkUpdate) Close() (err error)
func (*NetworkUpdate) GetLastUpdatedAddrs ¶ added in v2.277.0
func (n *NetworkUpdate) GetLastUpdatedAddrs(ctx context.Context) (addrs []ma.Multiaddr)
func (*NetworkUpdate) WaitForUpdate ¶ added in v2.277.0
type PeersUpdate ¶ added in v2.436.0
func (PeersUpdate) HasUpdate ¶ added in v2.436.0
func (current PeersUpdate) HasUpdate(tu *topicUpdate) []peer.ID
type Record ¶ added in v2.94.0
type Record struct { Cid string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"` Expire int64 `protobuf:"varint,2,opt,name=expire,proto3" json:"expire,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Record) Descriptor ¶ added in v2.94.0
func (*Record) MarshalToSizedBuffer ¶ added in v2.94.0
func (*Record) ProtoMessage ¶ added in v2.94.0
func (*Record) ProtoMessage()
func (*Record) XXX_DiscardUnknown ¶ added in v2.94.0
func (m *Record) XXX_DiscardUnknown()
func (*Record) XXX_Marshal ¶ added in v2.94.0
func (*Record) XXX_Unmarshal ¶ added in v2.94.0
type Records ¶ added in v2.94.0
type Records struct { Records []*Record `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Records) Descriptor ¶ added in v2.94.0
func (*Records) GetRecords ¶ added in v2.94.0
func (*Records) MarshalToSizedBuffer ¶ added in v2.94.0
func (*Records) ProtoMessage ¶ added in v2.94.0
func (*Records) ProtoMessage()
func (*Records) XXX_DiscardUnknown ¶ added in v2.94.0
func (m *Records) XXX_DiscardUnknown()
func (*Records) XXX_Marshal ¶ added in v2.94.0
func (*Records) XXX_Unmarshal ¶ added in v2.94.0
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
func NewService ¶
func (*Service) GetProcess ¶ added in v2.436.0
func (*Service) LookupPeers ¶ added in v2.436.0
func (*Service) StartAdvertises ¶ added in v2.436.0
StartAdvertises topic on each of service drivers
func (*Service) Subscribe ¶ added in v2.436.0
func (s *Service) Subscribe(topic string) *Subscription
func (*Service) Unregister ¶ added in v2.436.0
Unregister try to unregister topic on each of his driver
func (*Service) WatchPeers ¶ added in v2.436.0
type Subscription ¶ added in v2.436.0
type Subscription struct {
// contains filtered or unexported fields
}
func (*Subscription) Close ¶ added in v2.436.0
func (s *Subscription) Close() error
func (*Subscription) Out ¶ added in v2.436.0
func (s *Subscription) Out() <-chan peer.AddrInfo
func (*Subscription) Pull ¶ added in v2.436.0
func (s *Subscription) Pull() error
Click to show internal directories.
Click to hide internal directories.