Interface SchemaInfo
-
- All Known Implementing Classes:
CassandraSchemaInfo
public interface SchemaInfoProvides schema information for bulk write operations.This interface does NOT extend Serializable. SchemaInfo instances are never serialized. For broadcast to executors,
BroadcastableSchemaInfois used instead, and executors reconstruct SchemaInfo instances (specificallyCassandraSchemaInfo) from the broadcast data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableSchemagetTableSchema()java.util.Set<java.lang.String>getUserDefinedTypeStatements()
-
-
-
Method Detail
-
getTableSchema
TableSchema getTableSchema()
-
getUserDefinedTypeStatements
@NotNull java.util.Set<java.lang.String> getUserDefinedTypeStatements()
-
-