Documentation ¶
Index ¶
- type ObjAny
- type ObjContext
- type ObjDocker
- type ObjDockerd
- type ObjServer
- type ReqAnyRun
- type ReqContextPull
- type ReqContextPush
- type ReqDockerRun
- type ReqDockerdStart
- type ReqServerServe
- type ResAnyRun
- type ResContextPull
- type ResContextPush
- type ResDockerRun
- type ResDockerdStart
- type ResServerServe
- type Rpc
- func (rpc *Rpc) AnyRun(req *ReqAnyRun, res *ResAnyRun) error
- func (rpc *Rpc) ContextPull(req *ReqContextPull, res *ResContextPull) error
- func (rpc *Rpc) ContextPush(req *ReqContextPush, res *ResContextPush) error
- func (rpc *Rpc) DockerRun(req *ReqDockerRun, res *ResDockerRun) error
- func (rpc *Rpc) DockerdStart(req *ReqDockerdStart, res *ResDockerdStart) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ObjContext ¶
type ObjContext struct {
// contains filtered or unexported fields
}
func (*ObjContext) Pull ¶
func (obj *ObjContext) Pull(req *ReqContextPull) (*ResContextPull, error)
func (*ObjContext) Push ¶
func (obj *ObjContext) Push(req *ReqContextPush) (*ResContextPush, error)
type ObjDocker ¶
type ObjDocker struct {
// contains filtered or unexported fields
}
func (*ObjDocker) Run ¶
func (obj *ObjDocker) Run(req *ReqDockerRun) (*ResDockerRun, error)
type ObjDockerd ¶
type ObjDockerd struct {
// contains filtered or unexported fields
}
func (*ObjDockerd) Start ¶
func (obj *ObjDockerd) Start(req *ReqDockerdStart) (*ResDockerdStart, error)
type ObjServer ¶
type ObjServer struct {
// contains filtered or unexported fields
}
func (*ObjServer) Serve ¶
func (obj *ObjServer) Serve(req *ReqServerServe) (*ResServerServe, error)
type ReqContextPull ¶
type ReqContextPull struct { }
type ReqContextPush ¶
type ReqDockerRun ¶
type ReqDockerRun struct {
Args []string
}
type ReqDockerdStart ¶
type ReqDockerdStart struct { }
type ReqServerServe ¶
type ReqServerServe struct { }
type ResContextPull ¶
type ResContextPush ¶
type ResContextPush struct { }
type ResDockerRun ¶
type ResDockerRun struct {
Stdout string
}
type ResDockerdStart ¶
type ResDockerdStart struct { }
type ResServerServe ¶
type ResServerServe struct { }
type Rpc ¶
type Rpc struct { }
func (*Rpc) ContextPull ¶
func (rpc *Rpc) ContextPull(req *ReqContextPull, res *ResContextPull) error
func (*Rpc) ContextPush ¶
func (rpc *Rpc) ContextPush(req *ReqContextPush, res *ResContextPush) error
func (*Rpc) DockerRun ¶
func (rpc *Rpc) DockerRun(req *ReqDockerRun, res *ResDockerRun) error
func (*Rpc) DockerdStart ¶
func (rpc *Rpc) DockerdStart(req *ReqDockerdStart, res *ResDockerdStart) error
Source Files ¶
Click to show internal directories.
Click to hide internal directories.