func NewFileDescriptorProxy()

in file_descriptor_proxy.go [13:17]


func NewFileDescriptorProxy(stoppers int) *FileDescriptorProxy {
	return &FileDescriptorProxy{
		StopCh: make(chan error, stoppers+2), // each proxy() call is a stopper
	}
}