Class StoreAndForwardConfigRecord

    • Constructor Detail

      • StoreAndForwardConfigRecord

        public StoreAndForwardConfigRecord()
    • Method Detail

      • getId

        public java.lang.Long getId()
      • getName

        public java.lang.String getName()
      • setName

        public void setName​(java.lang.String name)
      • getBufferSize

        public int getBufferSize()
      • getEnableDiskStore

        public boolean getEnableDiskStore()
      • getStoreMaxRecords

        public int getStoreMaxRecords()
      • getStoreWriteSize

        public int getStoreWriteSize()
      • getStoreWriteTime

        public long getStoreWriteTime()
      • getForwardFromStore

        public boolean getForwardFromStore()
      • getForwardWriteSize

        public int getForwardWriteSize()
      • getForwardWriteTime

        public long getForwardWriteTime()
      • isScheduleEnabled

        public boolean isScheduleEnabled()
      • getSchedulePattern

        public java.lang.String getSchedulePattern()
      • isThirdParty

        public boolean isThirdParty()
      • setIsThirdParty

        public void setIsThirdParty​(boolean value)
      • getMeta

        public RecordMeta<?> getMeta()
        Description copied from class: SRecordInstance
        This must be defined in every user record's definition to access the SRecord which provides the meta data for this instance. It is normally defined as:-

         SRecord getMeta() {
           return meta;
         };
         

        The actual meta variable is thus not Serialized, but it would not be anyway as it is usually static.

        Specified by:
        getMeta in class PersistentRecord