Uses of Class
com.continuent.tungsten.replicator.thl.THLEvent

Packages that use THLEvent
com.continuent.tungsten.replicator.thl   
com.continuent.tungsten.replicator.thl.log   
com.continuent.tungsten.replicator.thl.serializer   
 

Uses of THLEvent in com.continuent.tungsten.replicator.thl
 

Methods in com.continuent.tungsten.replicator.thl that return THLEvent
 THLEvent EventsCache.get(long seqno)
          Look up and return the cached item, if found.
 

Methods in com.continuent.tungsten.replicator.thl with parameters of type THLEvent
 void THLParallelReadQueue.post(THLEvent thlEvent)
          Post a normal event which will be enqueued immediately.
static void THLManagerCtrl.printHeader(java.lang.StringBuilder stringBuilder, THLEvent thlEvent, int format)
          Prints a formatted header into StringBuilder for the given THLEvent.
 void EventsCache.put(THLEvent thlEvent)
          Add an event to the cache, clearing space if necessary.
 void THL.updateCommitSeqno(THLEvent thlEvent)
          Updates the sequence number stored in the catalog trep_commit_seqno.
 void CatalogManager.updateCommitSeqnoTable(THLEvent event)
          Updates the trep_commit_seqno table with latest event.
 

Uses of THLEvent in com.continuent.tungsten.replicator.thl.log
 

Methods in com.continuent.tungsten.replicator.thl.log that return THLEvent
 THLEvent LogEventReplReader.deserializeEvent()
          Deserialize and return the event.
 THLEvent LogConnection.next()
          Convenience method to return the next event with blocking enabled.
 THLEvent LogConnection.next(boolean block)
          Returns the next event in the log.
 

Methods in com.continuent.tungsten.replicator.thl.log with parameters of type THLEvent
 void LogConnection.store(THLEvent event, boolean commit)
          Store a THL event at the end of the log.
 

Constructors in com.continuent.tungsten.replicator.thl.log with parameters of type THLEvent
LogEventReplWriter(THLEvent event, Serializer serializer, boolean checkCRC, java.io.File file)
          Instantiate the writer.
 

Uses of THLEvent in com.continuent.tungsten.replicator.thl.serializer
 

Methods in com.continuent.tungsten.replicator.thl.serializer that return THLEvent
 THLEvent JavaSerializer.deserializeEvent(java.io.InputStream inStream)
          Deserializes THLEvent off the stream.
 THLEvent ProtobufSerializer.deserializeEvent(java.io.InputStream inStream)
          
 THLEvent Serializer.deserializeEvent(java.io.InputStream inStream)
           
 

Methods in com.continuent.tungsten.replicator.thl.serializer with parameters of type THLEvent
 void JavaSerializer.serializeEvent(THLEvent event, java.io.OutputStream outStream)
          Serialize the THL event onto the stream.
 void ProtobufSerializer.serializeEvent(THLEvent thlEvent, java.io.OutputStream outStream)
          
 void Serializer.serializeEvent(THLEvent replEvent, java.io.OutputStream outStream)
           
 void ProtobufSerializer.serializeHeader(THLEvent event, java.io.OutputStream outStream)