Class ParameterizedQueryServerImpl.Descriptor
java.lang.Object
io.deephaven.query.parameterized.impl.ParameterizedQueryServerImpl.Descriptor
- All Implemented Interfaces:
Inflatable<ParameterizedQueryClientImpl>
,Serializable
- Enclosing class:
- ParameterizedQueryServerImpl
public static final class ParameterizedQueryServerImpl.Descriptor
extends Object
implements Inflatable<ParameterizedQueryClientImpl>
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDescriptor
(int universeId, Collection<Parameter> params, String[] tableParamNames, Inflatable<Table>[] paramTables) -
Method Summary
Modifier and TypeMethodDescriptionInflatable<Table>[]
String[]
int
inflate
(QueryProcessorConnection queryProcessorConnection) Convert the inflatable into a local representation of the object.
-
Constructor Details
-
Descriptor
public Descriptor(int universeId, @NotNull Collection<Parameter> params, String[] tableParamNames, Inflatable<Table>[] paramTables)
-
-
Method Details
-
getUniverseId
public int getUniverseId() -
getParams
-
getTableParamNames
-
getParamTables
-
inflate
Description copied from interface:Inflatable
Convert the inflatable into a local representation of the object. For example, Inflatable<Table> objects are converted into Table proxies.- Specified by:
inflate
in interfaceInflatable<ParameterizedQueryClientImpl>
- Parameters:
queryProcessorConnection
- the queryProcessorConnection over which we received the Inflatable- Returns:
- a local representation of the object
-