package plugins

import "github.com/dotcloud/docker/pkg/plugins"

Index

Variables

var (
	ErrNotFound = errors.New("Plugin not found")
)
var (
	ErrNotImplements = errors.New("Plugin does not implement the requested driver")
)

Functions

func Handle

func Handle(iface string, fn func(string, *Client))

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

func NewClient

func NewClient(addr string, tlsConfig tlsconfig.Options) (*Client, error)

func (*Client) Call

func (c *Client) Call(serviceMethod string, args interface{}, ret interface{}) error

type LocalRegistry

type LocalRegistry struct{}

func (*LocalRegistry) Plugin

func (l *LocalRegistry) Plugin(name string) (*Plugin, error)

type Manifest

type Manifest struct {
	Implements []string
}

type Plugin

type Plugin struct {
	Name      string `json:"-"`
	Addr      string
	TLSConfig tlsconfig.Options
	Client    *Client   `json:"-"`
	Manifest  *Manifest `json:"-"`
}

func Get

func Get(name, imp string) (*Plugin, error)

type Registry

type Registry interface {
	Plugins() ([]*Plugin, error)
	Plugin(name string) (*Plugin, error)
}

Source Files

client.go discovery.go plugins.go

Directories

PathSynopsis
pkg/plugins/pluginrpc-gen
pkg/plugins/pluginrpc-gen/fixtures
Version
v1.8.3
Published
Oct 12, 2015
Platform
js/wasm
Imports
15 packages
Last checked
4 seconds ago

Tools for package owners.