TopicsServiceProperties value object

The getTopicsServiceProperties method returns the TopicsServiceProperties value object with the following fields:

  • serverVersion—The version of the Oracle Empirica Topics server. If your API version is greater than the Oracle Empirica Topics server version, you might experience compatibility issues.

    Note:

    Topics services are backward compatible with earlier client versions.
  • attachMaxRows—Defines the maximum number of rows in a TABLE attachment that your application can add. Your application is responsible for truncating the rows in a table to this value before sending it to the server.
  • attachMaxMegabytes—Defines the maximum megabytes of any attachment. The topics service throws a TopicsServiceException if your application attempts to add an attachment greater than the attachMaxMegabytes value in megabytes.
    class TopicsServiceProperties {
     Integer serverVersion;
     Integer attachMaxRows;
     Integer attachMaxMegabytes;
    }