Documentation ¶
Index ¶
Constants ¶
View Source
const DefaultRESTTimeout = 1 * time.Minute
DefaultRESTTimeout - default RPC timeout is one minute.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client - http based RPC client.
func NewClient ¶
func NewClient(url *url.URL, newCustomTransport func() *http.Transport, newAuthToken func() string) (*Client, error)
NewClient - returns new REST client.
func (*Client) Call ¶
func (c *Client) Call(method string, values url.Values, body io.Reader, length int64) (reply io.ReadCloser, err error)
Call - make a REST call.
type NetworkError ¶
type NetworkError struct {
Err error
}
NetworkError - error type in case of errors related to http/transport for ex. connection refused, connection reset, dns resolution failure etc. All errors returned by storage-rest-server (ex errFileNotFound, errDiskNotFound) are not considered to be network errors.
func (*NetworkError) Error ¶
func (n *NetworkError) Error() string
Click to show internal directories.
Click to hide internal directories.