Documentation ¶
Overview ¶
Package shared contains shared data between the host and plugins.
Index ¶
Constants ¶
View Source
const PluginName = "kv"
Variables ¶
View Source
var Handshake = plugin.HandshakeConfig{
ProtocolVersion: 1,
MagicCookieKey: "BASIC_PLUGIN",
MagicCookieValue: "hello",
}
Handshake is a common handshake that is shared by plugin and host.
View Source
var PluginMap = map[string]plugin.Plugin{ "kv_grpc": &KVGRPCPlugin{}, PluginName: &KVPlugin{}, }
PluginMap is the map of plugins we can dispense.
Functions ¶
This section is empty.
Types ¶
type GRPCClient ¶
type GRPCClient struct {
// contains filtered or unexported fields
}
GRPCClient is an implementation of KV that talks over RPC.
func (*GRPCClient) Keys ¶
func (m *GRPCClient) Keys() ([]string, error)
type GRPCServer ¶
type GRPCServer struct { // This is the real implementation Impl KV }
Here is the gRPC server that GRPCClient talks to.
func (*GRPCServer) Get ¶
func (m *GRPCServer) Get( ctx context.Context, req *proto.GetRequest) (*proto.GetResponse, error)
func (*GRPCServer) Keys ¶
func (m *GRPCServer) Keys( ctx context.Context, req *proto.Empty) (*proto.KeysResponse, error)
func (*GRPCServer) Put ¶
func (m *GRPCServer) Put( ctx context.Context, req *proto.PutRequest) (*proto.Empty, error)
type KV ¶
type KV interface { Put(key string, value []byte) error Get(key string) ([]byte, error) Keys() ([]string, error) }
KV is the interface that we're exposing as a plugin.
type KVGRPCPlugin ¶
type KVGRPCPlugin struct { // GRPCPlugin must still implement the Plugin interface plugin.Plugin // Concrete implementation, written in Go. This is only used for plugins // that are written in Go. Impl KV }
This is the implementation of plugin.GRPCPlugin so we can serve/consume this.
func (*KVGRPCPlugin) GRPCClient ¶
func (p *KVGRPCPlugin) GRPCClient(ctx context.Context, broker *plugin.GRPCBroker, c *grpc.ClientConn) (interface{}, error)
func (*KVGRPCPlugin) GRPCServer ¶
func (p *KVGRPCPlugin) GRPCServer(broker *plugin.GRPCBroker, s *grpc.Server) error
type KVPlugin ¶
type KVPlugin struct { // Concrete implementation, written in Go. This is only used for plugins // that are written in Go. Impl KV }
This is the implementation of plugin.Plugin so we can serve/consume this.
type RPCClient ¶
type RPCClient struct {
// contains filtered or unexported fields
}
RPCClient is an implementation of KV that talks over RPC.
Click to show internal directories.
Click to hide internal directories.