Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions sdk/messaging/azservicebus/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ import (
// Client provides methods to create Sender and Receiver
// instances to send and receive messages from Service Bus.
type Client struct {
creds clientCreds
namespace interface {
linkCounter uint64
links map[uint64]internal.Closeable
creds clientCreds
namespace interface {
// used internally by `Client`
internal.NamespaceWithNewAMQPLinks
// for child clients
internal.NamespaceForAMQPLinks
internal.NamespaceForMgmtClient
}
linksMu *sync.Mutex
linkCounter uint64
links map[uint64]internal.Closeable
linksMu *sync.Mutex
}

// ClientOptions contains options for the `NewClient` and `NewClientFromConnectionString`
Expand Down