예제 #1
0
파일: io.go 프로젝트: archa347/circuit
// Init
func init() {
	//
	//circuit.RegisterValue(XReader{})
	//circuit.RegisterValue(XWriter{})
	//circuit.RegisterValue(&XCloser{})
	//
	circuit.RegisterValue(&XReadCloser{})
	circuit.RegisterValue(&XWriteCloser{})
	circuit.RegisterValue(&XReadWriteCloser{})
	//
	circuit.RegisterValue(&XReadWriter{})
}
예제 #2
0
파일: acid.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(New())
}
예제 #3
0
파일: util.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(&Kin{}) // So that we can compute receiver ID
	circuit.RegisterValue(XKin{})
}
예제 #4
0
파일: exec.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(&XCmd{})
}
예제 #5
0
파일: x.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(XValve{})
}
예제 #6
0
func init() {
	circuit.RegisterValue(&XDialBack{})
}
예제 #7
0
파일: locus.go 프로젝트: herokai/circuit
func init() {
	circuit.RegisterValue(&peerSubscription{})
}
예제 #8
0
파일: x.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(XProc{})
}
예제 #9
0
파일: x.go 프로젝트: herokai/circuit
func init() {
	circuit.RegisterValue(XContainer{})
}
예제 #10
0
파일: x.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(XLocus{})
}
예제 #11
0
파일: shell.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(&XShell{})
}
예제 #12
0
파일: x.go 프로젝트: herokai/circuit
func init() {
	circuit.RegisterValue(XTube{})
}
예제 #13
0
파일: x.go 프로젝트: keryoo/circuit
func init() {
	circuit.RegisterValue(XTerminal{})
}
예제 #14
0
파일: file.go 프로젝트: hanjin8307/circuit
func init() {
	circuit.RegisterValue(&FileServer{})
}
예제 #15
0
파일: x.go 프로젝트: keryoo/circuit
func init() {
	circuit.RegisterValue(XNameserver{})
}
예제 #16
0
파일: tube.go 프로젝트: herokai/circuit
func init() {
	circuit.RegisterValue(&Tube{}) // In order to be able to compute receiver ID
}
예제 #17
0
파일: x.go 프로젝트: keryoo/circuit
func init() {
	circuit.RegisterValue(XServer{})
}