1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/go-micro.go

61 lines
1.2 KiB
Go
Raw Normal View History

2015-12-21 01:50:16 +02:00
/*
Go micro provides a pluggable library to build microservices.
import (
micro "github.com/micro/go-micro"
)
2015-12-21 01:52:58 +02:00
service := micro.NewService()
2015-12-21 01:50:16 +02:00
h := service.Server().NewHandler(&Greeter{})
service.Server().Handle(h)
service.Run()
2015-12-21 01:52:58 +02:00
req := service.Client().NewRequest(service, method, request)
2015-12-21 01:50:16 +02:00
rsp := response{}
2015-12-21 01:52:58 +02:00
err := service.Client().Call(req, rsp)
2015-12-21 01:50:16 +02:00
*/
2016-01-02 21:14:56 +02:00
package micro
2015-12-21 01:50:16 +02:00
import (
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/server"
2016-01-28 20:23:24 +02:00
"golang.org/x/net/context"
2015-12-21 01:50:16 +02:00
)
2016-01-28 20:23:24 +02:00
type serviceKey struct{}
2015-12-23 02:02:42 +02:00
// Service is an interface that wraps the lower level libraries
// within go-micro. Its a convenience method for building
// and initialising services.
2015-12-21 01:50:16 +02:00
type Service interface {
2016-01-01 03:16:21 +02:00
Init(...Option)
2016-01-02 21:12:17 +02:00
Options() Options
2015-12-21 01:50:16 +02:00
Client() client.Client
Server() server.Server
Run() error
String() string
}
type Option func(*Options)
var (
2015-12-21 03:12:29 +02:00
HeaderPrefix = "X-Micro-"
2015-12-21 01:50:16 +02:00
)
func NewService(opts ...Option) Service {
return newService(opts...)
}
2016-01-28 20:23:24 +02:00
func FromContext(ctx context.Context) (Service, bool) {
s, ok := ctx.Value(serviceKey{}).(Service)
return s, ok
}
func NewContext(ctx context.Context, s Service) context.Context {
return context.WithValue(ctx, serviceKey{}, s)
}