Class ColumnInfo

java.lang.Object
com.illumon.iris.sbetransport.ColumnInfo

public class ColumnInfo extends Object
Container class for column information provided by the table server when a client issues a new connection.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final int
     
    protected final String
     
    protected final int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    ColumnInfo(int columnId, int templateId, String name)
    Create a new column information object.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    A unique identifier for this column used by column data update messages.
    Name of the column
    int
    The encoder/decoder template identifier used when decoding table data updates for this column.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • columnId

      protected final int columnId
    • templateId

      protected final int templateId
    • name

      protected final String name
  • Constructor Details

    • ColumnInfo

      public ColumnInfo(int columnId, int templateId, String name)
      Create a new column information object.
      Parameters:
      columnId - Unique column identifier for the subscribed table
      templateId - Template identifier from the generated SBE encoder/decoder classes
      name - Column name
  • Method Details

    • getColumnId

      public int getColumnId()
      A unique identifier for this column used by column data update messages.
      Returns:
      Unique column identifier
    • getName

      public String getName()
      Name of the column
      Returns:
      The column name
    • getTemplateId

      public int getTemplateId()
      The encoder/decoder template identifier used when decoding table data updates for this column.
      Returns:
      The template identifier from the generated SBE encoder/decoder classes