All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.trace.agent.bootstrap.event.gen.ThreadBeginEventGen Maven / Gradle / Ivy

There is a newer version: 1.1.5
Show newest version
package com.vmlens.trace.agent.bootstrap.event.gen;

import java.nio.ByteBuffer;
import com.vmlens.trace.agent.bootstrap.event.*;
import java.io.DataOutputStream;

public class ThreadBeginEventGen  implements RuntimeEvent 
{


  
    public int getSlidingWindowId()
    {
      return slidingWindowId;
     } 
  

   private final int slidingWindowId;
  

     public final     long     threadId;
      public final     long     startedThreadId;
      public final     int     programCounter;
      public final     int     methodCounter;
      public  ThreadBeginEventGen(
int slidingWindowId 
,   long     threadId
,   long     startedThreadId
,   int     programCounter
,   int     methodCounter
)
 {

   this.slidingWindowId = slidingWindowId;

   this.threadId   =  threadId;
   this.startedThreadId   =  startedThreadId;
   this.programCounter   =  programCounter;
   this.methodCounter   =  methodCounter;
   }
 

 

public void serialize(StreamRepository streamRepository) throws Exception
{
     ByteBuffer buffer =  streamRepository.syncActions.getByteBuffer(slidingWindowId, 25, EventFactory.MAX_ARRAY_SIZE * 1000);

 buffer.put( (byte)  34 );
   
  buffer.putLong( threadId );  ;
  buffer.putLong( startedThreadId );  ;
 buffer.putInt( programCounter ); ;
 buffer.putInt( methodCounter ); ;
}



public void serialize2StreamWrapper(StreamWrapperWithSlidingWindow streamWrapper) throws Exception
{
     ByteBuffer buffer =  streamWrapper.getByteBuffer(slidingWindowId, 25, EventFactory.MAX_ARRAY_SIZE * 1000);

 buffer.put( (byte)  34 );
   
  buffer.putLong( threadId );  ;
  buffer.putLong( startedThreadId );  ;
 buffer.putInt( programCounter ); ;
 buffer.putInt( methodCounter ); ;
}












}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy