summaryrefslogtreecommitdiff
path: root/service/rpc.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/rpc.go')
-rw-r--r--service/rpc.go32
1 files changed, 0 insertions, 32 deletions
diff --git a/service/rpc.go b/service/rpc.go
deleted file mode 100644
index eb128768..00000000
--- a/service/rpc.go
+++ /dev/null
@@ -1,32 +0,0 @@
-package service
-
-import (
- "net"
- "strings"
-)
-
-type RPCConfig struct {
- Listen string
-}
-
-func (cfg *RPCConfig) CreateListener() (net.Listener, error) {
- dsn := strings.Split(cfg.Listen, "://")
- if len(dsn) != 2 {
- return nil, dsnError
- }
-
- return net.Listen(dsn[0], dsn[1])
-}
-
-func (cfg *RPCConfig) CreateDialer() (net.Conn, error) {
- dsn := strings.Split(cfg.Listen, "://")
- if len(dsn) != 2 {
- return nil, dsnError
- }
-
- return net.Dial(dsn[0], dsn[1])
-}
-
-func NewBus() *Bus {
- return &Bus{services: make([]Service, 0)}
-}