io.smallrye.graphql.schema.model.Execute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smallrye-graphql-schema-model Show documentation
Show all versions of smallrye-graphql-schema-model Show documentation
A model that represents the schema
package io.smallrye.graphql.schema.model;
/**
* Execution type
*
* @author Phillip Kruger ([email protected])
*/
public enum Execute {
BLOCKING,
NON_BLOCKING,
DEFAULT
}