PhysicalProcessorImpl

class PhysicalProcessorImpl(    val physicalPackageNumber: Int,     val physicalProcessorNumber: Int,     val efficiency: Int,     val idString: String) : PhysicalProcessor

Implementation of the PhysicalProcessor interface, representing a physical processor in the system. This class encapsulates the details about the physical processor's package, number, efficiency, and unique identifier string.

Author

N7ghtm4r3

See also

Constructors

Link copied to clipboard
constructor(physicalPackageNumber: Int, physicalProcessorNumber: Int, efficiency: Int, idString: String)

Properties

Link copied to clipboard
open override val efficiency: Int

efficiency the efficiency level of the physical processor

Link copied to clipboard
open override val idString: String

idString a unique string identifier for this physical processor

Link copied to clipboard
open override val physicalPackageNumber: Int

physicalPackageNumber the unique identifier for the physical CPU package this processor belongs to

Link copied to clipboard
open override val physicalProcessorNumber: Int

physicalProcessorNumber the unique identifier for the physical processor within the package