1 Star 2 Fork 0

李文建/light-protoactor-go

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
protos.rpc.go 294 Bytes
Copy Edit Raw Blame History
李文建 authored 2018-01-03 09:57 +08:00 . update
package actor
const PH = 1
func (m *PID) ResetEx() {
m.Address = ""
m.Id = ""
m.p = nil
}
func (m PID) Clone() *PID {
return NewPID(m.Address, m.Id)
}
func ClonePIDSlice(dst []*PID, src []*PID) []*PID {
dst = []*PID{}
for _, i := range src {
dst = append(dst, i)
}
return dst
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lwj8507/light-protoactor-go.git
git@gitee.com:lwj8507/light-protoactor-go.git
lwj8507
light-protoactor-go
light-protoactor-go
013e33d7022f

Search