Class ApolloWSConnectionInitEvent
java.lang.Object
io.vertx.mutiny.core.Promise<Object>
io.vertx.mutiny.ext.web.handler.graphql.ApolloWSConnectionInitEvent
- All Implemented Interfaces:
MutinyDelegate
@Deprecated
public class ApolloWSConnectionInitEvent
extends Promise<Object>
implements MutinyDelegate
Deprecated.
NOTE: This class has been automatically generated from the
original
non Mutiny-ified interface using Vert.x codegen.-
Field Summary
FieldsFields inherited from class io.vertx.mutiny.core.Promise
__typeArg_0
-
Constructor Summary
ConstructorsConstructorDescriptionApolloWSConnectionInitEvent
(io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent delegate) Deprecated.ApolloWSConnectionInitEvent
(Object delegate) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.boolean
Deprecated.io.smallrye.mutiny.Uni<Object>
future()
Deprecated.Deprecated.void
Deprecated.io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent
Deprecated.int
hashCode()
Deprecated.message()
Deprecated.static ApolloWSConnectionInitEvent
newInstance
(io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent arg) Deprecated.toString()
Deprecated.boolean
tryComplete
(Object arg0) Deprecated.Methods inherited from class io.vertx.mutiny.core.Promise
complete, fail, fail, newInstance, newInstance, promise, tryComplete, tryFail, tryFail
-
Field Details
-
__TYPE_ARG
Deprecated.
-
-
Constructor Details
-
ApolloWSConnectionInitEvent
public ApolloWSConnectionInitEvent(io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent delegate) Deprecated. -
ApolloWSConnectionInitEvent
Deprecated.
-
-
Method Details
-
getDelegate
public io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent getDelegate()Deprecated.- Specified by:
getDelegate
in interfaceMutinyDelegate
- Overrides:
getDelegate
in classPromise<Object>
- Returns:
- the delegate used by this Mutiny object of generated type
-
toString
Deprecated. -
equals
Deprecated. -
hashCode
public int hashCode()Deprecated. -
complete
Deprecated. -
tryComplete
Deprecated.- Overrides:
tryComplete
in classPromise<Object>
- Parameters:
arg0
- the result- Returns:
false
when the future is already completed
-
future
Deprecated.Description copied from class:Promise
Unlike the bare Vert.x variant, this method returns a
Uni
. Don't forget to subscribe on it to trigger the operation. -
futureAndAwait
Deprecated.Description copied from class:Promise
Blocking variant ofPromise.future()
.This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Overrides:
futureAndAwait
in classPromise<Object>
- Returns:
- the T instance produced by the operation.
-
futureAndForget
Deprecated.Description copied from class:Promise
Variant ofPromise.future()
that ignores the result of the operation.This method subscribes on the result of
Promise.future()
, but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromPromise.future()
but you don't need to compose it with other operations.- Overrides:
futureAndForget
in classPromise<Object>
-
message
Deprecated.- Returns:
- message
-
newInstance
public static ApolloWSConnectionInitEvent newInstance(io.vertx.ext.web.handler.graphql.ApolloWSConnectionInitEvent arg) Deprecated.
-