Documentation ¶
Overview ¶
Example ¶
package main import ( "fmt" "github.com/name5566/leaf/chanrpc" "sync" ) func main() { s := chanrpc.NewServer(10) var wg sync.WaitGroup wg.Add(1) // goroutine 1 go func() { s.Register("f0", func(args []interface{}) { }) s.Register("f1", func(args []interface{}) interface{} { return 1 }) s.Register("fn", func(args []interface{}) []interface{} { return []interface{}{1, 2, 3} }) s.Register("add", func(args []interface{}) interface{} { n1 := args[0].(int) n2 := args[1].(int) return n1 + n2 }) wg.Done() for { s.Exec(<-s.ChanCall) } }() wg.Wait() wg.Add(1) // goroutine 2 go func() { c := s.Open(10) // sync err := c.Call0("f0") if err != nil { fmt.Println(err) } r1, err := c.Call1("f1") if err != nil { fmt.Println(err) } else { fmt.Println(r1) } rn, err := c.CallN("fn") if err != nil { fmt.Println(err) } else { fmt.Println(rn[0], rn[1], rn[2]) } ra, err := c.Call1("add", 1, 2) if err != nil { fmt.Println(err) } else { fmt.Println(ra) } // asyn c.AsynCall("f0", func(err error) { if err != nil { fmt.Println(err) } }) c.AsynCall("f1", func(ret interface{}, err error) { if err != nil { fmt.Println(err) } else { fmt.Println(ret) } }) c.AsynCall("fn", func(ret []interface{}, err error) { if err != nil { fmt.Println(err) } else { fmt.Println(ret[0], ret[1], ret[2]) } }) c.AsynCall("add", 1, 2, func(ret interface{}, err error) { if err != nil { fmt.Println(err) } else { fmt.Println(ret) } }) c.Cb(<-c.ChanAsynRet) c.Cb(<-c.ChanAsynRet) c.Cb(<-c.ChanAsynRet) c.Cb(<-c.ChanAsynRet) // go s.Go("f0") wg.Done() }() wg.Wait() }
Output: 1 1 2 3 3 1 1 2 3 3
Index ¶
- type CallInfo
- type Client
- func (c *Client) AsynCall(id interface{}, _args ...interface{})
- func (c *Client) Attach(s *Server)
- func (c *Client) Call0(id interface{}, args ...interface{}) error
- func (c *Client) Call1(id interface{}, args ...interface{}) (interface{}, error)
- func (c *Client) CallN(id interface{}, args ...interface{}) ([]interface{}, error)
- func (c *Client) Cb(ri *RetInfo)
- func (c *Client) Close()
- func (c *Client) Idle() bool
- type RetInfo
- type Server
- func (s *Server) Call0(id interface{}, args ...interface{}) error
- func (s *Server) Call1(id interface{}, args ...interface{}) (interface{}, error)
- func (s *Server) CallN(id interface{}, args ...interface{}) ([]interface{}, error)
- func (s *Server) Close()
- func (s *Server) Exec(ci *CallInfo)
- func (s *Server) Go(id interface{}, args ...interface{})
- func (s *Server) Open(l int) *Client
- func (s *Server) Register(id interface{}, f interface{})
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { ChanAsynRet chan *RetInfo // contains filtered or unexported fields }
type Server ¶
type Server struct { ChanCall chan *CallInfo // contains filtered or unexported fields }
one server per goroutine (goroutine not safe) one client per goroutine (goroutine not safe)
Click to show internal directories.
Click to hide internal directories.