Package io.quarkus.vertx.http
Record Class HttpsServerStart
java.lang.Object
java.lang.Record
io.quarkus.vertx.http.HttpsServerStart
Quarkus fires a CDI event of this type asynchronously when the HTTPS server starts listening
on the configured host and port.
@ApplicationScoped
public class MyListener {
void httpsStarted(@ObservesAsync HttpsServerStart start) {
// ...notified when the HTTPS server starts listening
}
}
-
Constructor Summary
ConstructorsConstructorDescriptionHttpsServerStart(io.vertx.core.http.HttpServerOptions options) Creates an instance of aHttpsServerStartrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.io.vertx.core.http.HttpServerOptionsoptions()Returns the value of theoptionsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
HttpsServerStart
public HttpsServerStart(io.vertx.core.http.HttpServerOptions options) Creates an instance of aHttpsServerStartrecord class.- Parameters:
options- the value for theoptionsrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
options
public io.vertx.core.http.HttpServerOptions options()Returns the value of theoptionsrecord component.- Returns:
- the value of the
optionsrecord component
-