Skip to content

Commit

Permalink
Merge pull request apache#41 from dubbogo/develop-2.6.0
Browse files Browse the repository at this point in the history
Develop 2.6.0
  • Loading branch information
hxmhlt authored May 6, 2019
2 parents 3ac060b + 20b9e42 commit 7072679
Show file tree
Hide file tree
Showing 136 changed files with 5,325 additions and 3,423 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dubbo-go #
---
Apache Dubbo golang version.
Apache Dubbo Golang Implementation.

## License

Expand All @@ -20,6 +20,7 @@ Apache License, Version 2.0

The subdirectory examples shows how to use dubbo-go. Please read the examples/readme.md carefully to learn how to dispose the configuration and compile the program.


## Todo list

- [ ] Tcp Transport and Hessian2 protocol
Expand Down
22 changes: 0 additions & 22 deletions client/client_transport.go

This file was deleted.

224 changes: 0 additions & 224 deletions client/invoker/invoker.go

This file was deleted.

27 changes: 0 additions & 27 deletions client/selector/random.go

This file was deleted.

26 changes: 0 additions & 26 deletions client/selector/round_robin.go

This file was deleted.

18 changes: 0 additions & 18 deletions client/selector/selector.go

This file was deleted.

9 changes: 0 additions & 9 deletions client/service_array.go

This file was deleted.

7 changes: 7 additions & 0 deletions cluster/cluster.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package cluster

import "github.com/dubbo/go-for-apache-dubbo/protocol"

type Cluster interface {
Join(Directory) protocol.Invoker
}
12 changes: 12 additions & 0 deletions cluster/directory.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package cluster

import (
"github.com/dubbo/go-for-apache-dubbo/common"
"github.com/dubbo/go-for-apache-dubbo/protocol"
)

// Extension - Directory
type Directory interface {
common.Node
List(invocation protocol.Invocation) []protocol.Invoker
}
Loading

0 comments on commit 7072679

Please sign in to comment.