interactor.Start()
is the main issue. You are basically locking the server in a way that it won’t handle any network request but rather wait for mouse events that will never come.
interactor.Start()
is the main issue. You are basically locking the server in a way that it won’t handle any network request but rather wait for mouse events that will never come.