예제 #1
0
파일: http_handler.go 프로젝트: Miaque/mojo
func (d *HttpHandlerDelegate) AcceptConnection(c *application.Connection) {
	c.Close()
}
예제 #2
0
func (delegate *TestClientDelegate) AcceptConnection(connection *application.Connection) {
	log.Printf("TestClientDelegate.AcceptConnection...")
	connection.Close()
}
예제 #3
0
func (delegate *RemoteEchoClientDelegate) AcceptConnection(connection *application.Connection) {
	log.Printf("RemoteEchoClientDelegate.AcceptConnection...")
	connection.Close()
}
예제 #4
0
파일: echo_client.go 프로젝트: Miaque/mojo
func (delegate *EchoClientDelegate) AcceptConnection(connection *application.Connection) {
	connection.Close()
}
예제 #5
0
func (*delegate) AcceptConnection(connection *application.Connection) {
	connection.Close()
}