Package com.zeroc.IceGrid
Class DbEnvDescriptor
java.lang.Object
com.zeroc.IceGrid.DbEnvDescriptor
- All Implemented Interfaces:
Serializable
,Cloneable
A Freeze database environment descriptor.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe home of the database environment (i.e., the directory where the database files will be stored).The description of this database environment.The name of the database environment.The configuration properties of the database environment. -
Constructor Summary
ConstructorsConstructorDescriptionDbEnvDescriptor
(String name, String description, String dbHome, List<PropertyDescriptor> properties) -
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
int
hashCode()
static DbEnvDescriptor
ice_read
(InputStream istr) static Optional<DbEnvDescriptor>
ice_read
(InputStream istr, int tag) void
ice_readMembers
(InputStream istr) static void
ice_write
(OutputStream ostr, int tag, DbEnvDescriptor v) static void
ice_write
(OutputStream ostr, int tag, Optional<DbEnvDescriptor> v) static void
ice_write
(OutputStream ostr, DbEnvDescriptor v) void
ice_writeMembers
(OutputStream ostr)
-
Field Details
-
name
The name of the database environment. -
description
The description of this database environment. -
dbHome
The home of the database environment (i.e., the directory where the database files will be stored). If empty, the node will provide a default database directory, otherwise the directory must exist. -
properties
The configuration properties of the database environment.
-
-
Constructor Details
-
DbEnvDescriptor
public DbEnvDescriptor() -
DbEnvDescriptor
public DbEnvDescriptor(String name, String description, String dbHome, List<PropertyDescriptor> properties)
-
-
Method Details