An entry point for a ZIO application that allows sharing layers between applications. For a simpler version that uses the default ZIO environment see ZIOAppDefault.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
class Proxytrait ZIOAppDefault
- Self type
Members list
Type members
Types
Value members
Abstract methods
A layer that manages the acquisition and release of services necessary for the application to run.
A layer that manages the acquisition and release of services necessary for the application to run.
Attributes
The main function of the application, which can access the command-line arguments through the args helper method of this class. If the provided effect fails for any reason, the cause will be logged, and the exit code of the application will be non-zero. Otherwise, the exit code of the application will be zero.
The main function of the application, which can access the command-line arguments through the args helper method of this class. If the provided effect fails for any reason, the cause will be logged, and the exit code of the application will be non-zero. Otherwise, the exit code of the application will be zero.
Attributes
Concrete methods
A helper function to exit the application with the specified exit code.
A helper function to exit the application with the specified exit code.
Attributes
A helper function to obtain access to the command-line arguments of the application. You may use this helper function inside your run function.
A helper function to obtain access to the command-line arguments of the application. You may use this helper function inside your run function.
Attributes
The time that the application will wait for finalizers to run before exiting.
The time that the application will wait for finalizers to run before exiting.
'''NOTE''': This is currently used only for JVM & ScalaNative applications
Attributes
Invokes the main app. Designed primarily for testing.
Invokes the main app. Designed primarily for testing.
Attributes
Implicits
Implicits
Inherited implicits
This implicit conversion macro will ensure that the provided ZIO effect does not require more than the provided environment.
This implicit conversion macro will ensure that the provided ZIO effect does not require more than the provided environment.
If it is missing requirements, it will report a descriptive error message. Otherwise, the effect will be returned unmodified.
Attributes
- Inherited from:
- ZIOAppVersionSpecific (hidden)