calc

package
v2.0.8+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 30, 2019 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const ServiceName = "calc"

ServiceName is the name of the service as defined in the design. This is the same value that is set in the endpoint request contexts under the ServiceKey key.

Variables

View Source
var MethodNames = [1]string{"add"}

MethodNames lists the service method names as defined in the design. These are the same values that are set in the endpoint request contexts under the MethodKey key.

Functions

func NewAddEndpoint

func NewAddEndpoint(s Service) goa.Endpoint

NewAddEndpoint returns an endpoint function that calls the method "add" of service "calc".

Types

type AddPayload

type AddPayload struct {
	// Left operand
	A int
	// Right operand
	B int
}

AddPayload is the payload type of the calc service add method.

type Client

type Client struct {
	AddEndpoint goa.Endpoint
}

Client is the "calc" service client.

func NewClient

func NewClient(add goa.Endpoint) *Client

NewClient initializes a "calc" service client given the endpoints.

func (*Client) Add

func (c *Client) Add(ctx context.Context, p *AddPayload) (res int, err error)

Add calls the "add" endpoint of the "calc" service.

type Endpoints

type Endpoints struct {
	Add goa.Endpoint
}

Endpoints wraps the "calc" service endpoints.

func NewEndpoints

func NewEndpoints(s Service) *Endpoints

NewEndpoints wraps the methods of the "calc" service with endpoints.

func (*Endpoints) Use

func (e *Endpoints) Use(m func(goa.Endpoint) goa.Endpoint)

Use applies the given middleware to all the "calc" service endpoints.

type Service

type Service interface {
	// Add implements add.
	Add(context.Context, *AddPayload) (res int, err error)
}

The calc service performs operations on numbers

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL