Class ServerThread
- java.lang.Object
-
- com.suse.salt.netapi.datatypes.cherrypy.ServerThread
-
public class ServerThread extends java.lang.Object
Representation of server thread statistics.
-
-
Field Summary
Fields Modifier and Type Field Description private int
bytesRead
private int
bytesWritten
private double
readThroughput
private int
requests
private double
workTime
private double
writeThroughput
-
Constructor Summary
Constructors Constructor Description ServerThread()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBytesRead()
int
getBytesWritten()
double
getReadThroughput()
int
getRequests()
double
getWorkTime()
double
getWriteThroughput()
-
-
-
Field Detail
-
bytesRead
@SerializedName("Bytes Read") private int bytesRead
-
bytesWritten
@SerializedName("Bytes Written") private int bytesWritten
-
readThroughput
@SerializedName("Read Throughput") private double readThroughput
-
requests
@SerializedName("Requests") private int requests
-
workTime
@SerializedName("Work Time") private double workTime
-
writeThroughput
@SerializedName("Write Throughput") private double writeThroughput
-
-