51 lines
900 B
Go
51 lines
900 B
Go
package network
|
|
|
|
import (
|
|
"github.com/micro/go-micro/client"
|
|
"github.com/micro/go-micro/network/proxy/mucp"
|
|
"github.com/micro/go-micro/network/router"
|
|
"github.com/micro/go-micro/server"
|
|
)
|
|
|
|
type network struct {
|
|
name string
|
|
options Options
|
|
}
|
|
|
|
func (n *network) Name() string {
|
|
return n.name
|
|
}
|
|
|
|
func (n *network) Connect() error {
|
|
return n.options.Server.Start()
|
|
}
|
|
|
|
func (n *network) Close() error {
|
|
return n.options.Server.Stop()
|
|
}
|
|
|
|
// NewNetwork returns a new network node
|
|
func NewNetwork(opts ...Option) Network {
|
|
options := Options{
|
|
Name: DefaultName,
|
|
Client: client.DefaultClient,
|
|
Server: server.DefaultServer,
|
|
Proxy: mucp.NewProxy(),
|
|
Router: router.DefaultRouter,
|
|
}
|
|
|
|
for _, o := range opts {
|
|
o(&options)
|
|
}
|
|
|
|
// set the server name
|
|
options.Server.Init(
|
|
server.Name(options.Name),
|
|
server.WithRouter(options.Proxy),
|
|
)
|
|
|
|
return &network{
|
|
options: options,
|
|
}
|
|
}
|