Managing Metadata Programmatically
Overview
List Metadata for All Binary Types
This operation retrieves metadata for all binary types defined in your environment.
public Collection<BinaryType> types() throws BinaryObjectException;
ICollection<IBinaryType> GetBinaryTypes();
Get Metadata for a Specific Binary Type
This operation retrieves metadata for the binary type indicated by typeId
or typeName
.
public BinaryType type(int typeId) throws BinaryObjectException;
public BinaryType type(String typeName) throws BinaryObjectException;
IBinaryType GetBinaryType(int typeId);
IBinaryType GetBinaryType(string typeName);
Remove a Binary Type
This operation removes the binary type indicated by typeId
.
public void removeType(int typeId) throws IgniteException;
void RemoveBinaryType(int typeId);
© 2024 GridGain Systems, Inc. All Rights Reserved. Privacy Policy | Legal Notices. GridGain® is a registered trademark of GridGain Systems, Inc.
Apache, Apache Ignite, the Apache feather and the Apache Ignite logo are either registered trademarks or trademarks of The Apache Software Foundation.