Package io.undertow
Class Undertow
- java.lang.Object
-
- io.undertow.Undertow
-
public final class Undertow extends java.lang.Object
Convenience class used to build an Undertow server.- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Undertow.Builder
static class
Undertow.ListenerBuilder
static class
Undertow.ListenerInfo
static class
Undertow.ListenerType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Undertow.Builder
builder()
java.util.List<Undertow.ListenerInfo>
getListenerInfo()
org.xnio.XnioWorker
getWorker()
org.xnio.Xnio
getXnio()
void
start()
void
stop()
-
-
-
Method Detail
-
builder
public static Undertow.Builder builder()
- Returns:
- A builder that can be used to create an Undertow server instance
-
start
public void start()
-
stop
public void stop()
-
getXnio
public org.xnio.Xnio getXnio()
-
getWorker
public org.xnio.XnioWorker getWorker()
-
getListenerInfo
public java.util.List<Undertow.ListenerInfo> getListenerInfo()
-
-