StatementContext

data class StatementContext(    val threadName: String,     val threadID: String = "",     val line: StatementContext.LineContext? = null)

Constructors

Link copied to clipboard
fun StatementContext(    threadName: String,     threadID: String = "",     line: StatementContext.LineContext? = null)

Types

Link copied to clipboard
data class LineContext(    val lineNumber: Int = -1,     val functionName: String? = null,     val className: String? = null,     val fileName: String? = null)

Properties

Link copied to clipboard
val line: StatementContext.LineContext? = null
Link copied to clipboard
val threadID: String
Link copied to clipboard
val threadName: String
Link copied to clipboard
val time: Long