json_client

package
v0.0.0-...-9ea5446 Latest Latest
Warning

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

Go to latest
Published: Apr 18, 2024 License: Apache-2.0 Imports: 8 Imported by: 17

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	Logger      lager.Logger
	HttpClient  HttpClient
	Url         string
	Marshaler   marshal.Marshaler
	Unmarshaler marshal.Unmarshaler
}

func (*Client) CloseIdleConnections

func (c *Client) CloseIdleConnections()

func (*Client) Do

func (c *Client) Do(method, route string, reqData, respData interface{}, token string) error

type HttpClient

type HttpClient interface {
	Do(*http.Request) (*http.Response, error)
	CloseIdleConnections()
}

type HttpResponseCodeError

type HttpResponseCodeError struct {
	StatusCode int
	Message    string
}

func (*HttpResponseCodeError) Error

func (h *HttpResponseCodeError) Error() string

type JsonClient

type JsonClient interface {
	Do(method, route string, reqData, respData interface{}, token string) error
	CloseIdleConnections()
}

func New

func New(logger lager.Logger, httpClient HttpClient, baseURL string) JsonClient

Jump to

Keyboard shortcuts

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