io_adapter library
Classes
- IOAdapter
-
An Adapter implementation for
dart:io
HttpServer. - IOAdapterRequest
Functions
-
bindHttpServer(
InternetAddress address, {int port = 0, SecurityContext? context, int backlog = 0, bool v6Only = false, }) → Future< HttpServer> -
Binds an HTTP server to the given
address
andport
. -
serve(
Handler handler, InternetAddress address, int port, {SecurityContext? securityContext, int? backlog, }) → Future< RelicServer> -
Starts a server that listens on the specified
address
andport
and sends requests tohandler
.