Uses of Interface
org.h2.server.Service
-
Packages that use Service Package Description org.h2.server A small FTP server.org.h2.server.pg PostgreSQL server implementation of this database.org.h2.server.web The H2 Console tool.org.h2.tools Various tools. -
-
Uses of Service in org.h2.server
Classes in org.h2.server that implement Service Modifier and Type Class Description class
TcpServer
The TCP server implements the native H2 database server protocol. -
Uses of Service in org.h2.server.pg
Classes in org.h2.server.pg that implement Service Modifier and Type Class Description class
PgServer
This class implements a subset of the PostgreSQL protocol as described here: https://www.postgresql.org/docs/devel/protocol.html The PostgreSQL catalog is described here: https://www.postgresql.org/docs/7.4/catalogs.html -
Uses of Service in org.h2.server.web
Classes in org.h2.server.web that implement Service Modifier and Type Class Description class
WebServer
The web server is a simple standalone HTTP server that implements the H2 Console application. -
Uses of Service in org.h2.tools
Fields in org.h2.tools declared as Service Modifier and Type Field Description private Service
Server. service
Methods in org.h2.tools that return Service Modifier and Type Method Description Service
Server. getService()
Get the service attached to this server.Constructors in org.h2.tools with parameters of type Service Constructor Description Server(Service service, java.lang.String... args)
Create a new server for the given service.
-