DataInputX.readBoolean
Code IndexAdd Codota to your IDE (free)

Best code snippets using scouter.io.DataInputX.readBoolean(Showing top 11 results out of 315)

origin: scouter-project/scouter

public void read(DataInputX input) throws IOException {
  this.objType = input.readText();
  this.checkInterval = input.readLong();
  this.title = input.readText();
  this.level = input.readByte();
  this.condition = input.readText();
  this.message = input.readText();
  this.lastCheckTime = input.readLong();
  this.enabled = input.readBoolean();
}
origin: scouter-project/scouter

public Value read(DataInputX din) throws IOException {
  this.value = din.readBoolean();
  return this;
}
origin: scouter-project/scouter

private void readInternal(DataInputX d) throws IOException {
  this.startTime = d.readLong();		
  this.objHash = d.readInt();
  this.batchJobId = d.readText();
  this.args = d.readText();
  this.pID = d.readInt();
  
  this.elapsedTime = d.readLong();
  this.threadCnt = d.readInt();
  this.cpuTime = d.readLong();
  this.gcTime = d.readLong();
  this.gcCount = d.readLong();
  this.sqlTotalCnt = d.readInt();
  this.sqlTotalTime = d.readLong();
  this.sqlTotalRows = d.readLong();
  this.sqlTotalRuns = d.readLong();
  
  this.isStack = d.readBoolean();
  
  this.objName = d.readText();
  this.objType = d.readText();
  
  this.position = d.readLong();
}

origin: scouter-project/scouter

public Pack read(DataInputX din) throws IOException {
  this.objType = din.readText();
  this.objHash = (int) din.readDecimal();
  this.objName = din.readText();
  this.address = din.readText();
  this.version = din.readText();
  this.alive = din.readBoolean();
  this.wakeup = din.readDecimal();
  this.tags = (MapValue) din.readValue();
  return this;
}
origin: scouter-project/scouter

  public Pack read(DataInputX din) throws IOException {
    DataInputX d = new DataInputX(din.readBlob());
    readInternal(d);

    if(this.sqlTotalCnt > 0){
      this.sqlStats = new ArrayList<MapValue>((int)this.sqlTotalCnt);
      MapValue value;
      for(int i=0; i<this.sqlTotalCnt; i++){
        value = new MapValue();
        this.sqlStats.add(value);
        value.put("hashValue",(long)d.readInt());
        value.put("runs", (long)d.readInt());
        value.put("startTime", d.readLong());
        value.put("endTime", d.readLong());
        value.put("totalTime", d.readLong());
        value.put("minTime", d.readLong());
        value.put("maxTime", d.readLong());
        value.put("processedRows", d.readLong());
        value.put("rowed", new BooleanValue(d.readBoolean()));
      }
      
      this.uniqueSqls = new HashMap<Integer, String>(this.sqlTotalCnt);
      for(int i=0; i<this.sqlTotalCnt; i++){
        this.uniqueSqls.put(d.readInt(), d.readText());
      }
    }
    
    return this;
  }
}
origin: scouter-project/scouter

  r.deleted = in.readBoolean();
  r.prevPos = in.readLong5();
  r.timeKey = in.readShortBytes();
this.synchronized {
  this.raf.seek(pos);
  return new DataInputX(this.raf).readBoolean();
origin: scouter-project/scouter

public void read(DataInputX input) throws IOException {
  this.objType = input.readText();
  this.checkInterval = input.readLong();
  this.title = input.readText();
  this.level = input.readByte();
  this.condition = input.readText();
  this.message = input.readText();
  this.lastCheckTime = input.readLong();
  this.enabled = input.readBoolean();
}
origin: scouter-project/scouter

public Pack read(DataInputX din) throws IOException {
  this.objType = din.readText();
  this.objHash = (int) din.readDecimal();
  this.objName = din.readText();
  this.address = din.readText();
  this.version = din.readText();
  this.alive = din.readBoolean();
  this.wakeup = din.readDecimal();
  this.tags = (MapValue) din.readValue();
  return this;
}
origin: scouter-project/scouter

public Value read(DataInputX din) throws IOException {
  this.value = din.readBoolean();
  return this;
}
origin: scouter-project/scouter

private void readInternal(DataInputX d) throws IOException {
  this.startTime = d.readLong();		
  this.objHash = d.readInt();
  this.batchJobId = d.readText();
  this.args = d.readText();
  this.pID = d.readInt();
  
  this.elapsedTime = d.readLong();
  this.threadCnt = d.readInt();
  this.cpuTime = d.readLong();
  this.gcTime = d.readLong();
  this.gcCount = d.readLong();
  this.sqlTotalCnt = d.readInt();
  this.sqlTotalTime = d.readLong();
  this.sqlTotalRows = d.readLong();
  this.sqlTotalRuns = d.readLong();
  
  this.isStack = d.readBoolean();
  
  this.objName = d.readText();
  this.objType = d.readText();
  
  this.position = d.readLong();
}

origin: scouter-project/scouter

  public Pack read(DataInputX din) throws IOException {
    DataInputX d = new DataInputX(din.readBlob());
    readInternal(d);

    if(this.sqlTotalCnt > 0){
      this.sqlStats = new ArrayList<MapValue>((int)this.sqlTotalCnt);
      MapValue value;
      for(int i=0; i<this.sqlTotalCnt; i++){
        value = new MapValue();
        this.sqlStats.add(value);
        value.put("hashValue",(long)d.readInt());
        value.put("runs", (long)d.readInt());
        value.put("startTime", d.readLong());
        value.put("endTime", d.readLong());
        value.put("totalTime", d.readLong());
        value.put("minTime", d.readLong());
        value.put("maxTime", d.readLong());
        value.put("processedRows", d.readLong());
        value.put("rowed", new BooleanValue(d.readBoolean()));
      }
      
      this.uniqueSqls = new HashMap<Integer, String>(this.sqlTotalCnt);
      for(int i=0; i<this.sqlTotalCnt; i++){
        this.uniqueSqls.put(d.readInt(), d.readText());
      }
    }
    
    return this;
  }
}
scouter.ioDataInputXreadBoolean

Popular methods of DataInputX

  • <init>
  • readByte
  • readPack
  • readValue
  • available
  • read
  • readBlob
  • readInt
  • readLong
  • readLong5
  • readStep
  • readText
  • readStep,
  • readText,
  • toInt,
  • toLong,
  • toLong5,
  • close,
  • get,
  • readArray,
  • readDecimal

Popular classes and methods

  • putExtra (Intent)
  • getApplicationContext (Context)
  • getOriginalFilename (MultipartFile)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • BitSet (java.util)
    This implementation uses bit groups of size 32 to keep track of when bits are set to true or false.
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)