start
Starts the Mokksy server and blocks until the port is bound and ready to accept requests.
Intended for Java callers and blocking JVM test setups. Kotlin callers should prefer startSuspend combined with awaitStarted.
Starts the Mokksy server on the given dispatcher, blocking until the port is bound.
The dispatcher does not affect which thread is blocked — runBlocking always blocks the calling thread. This overload exists for Kotlin callers that need coroutine context control; Java callers should use start with no arguments.
Parameters
dispatcher
The CoroutineDispatcher for the runBlocking coroutine context.