BuilderScope

Configure optionals for Config.

e.g.

Config(
    iconReady = R.drawable.my_icon_ready,
    iconNotReady = R.drawable.my_icon_not_ready,
) {
    colorReady = R.color.tor_purple
    iconData = R.drawable.my_icon_data
    enableActionRestart = true
    displayName = DisplayName.StringRes(R.string.tor_instance_1)
}

Properties

Link copied to clipboard
@JvmField
var colorReady: Int

The color resource id to apply to the notification when the instance of TorRuntime is in an operative state (i.e. bootstrapped & network enabled).

Link copied to clipboard
@JvmField
var displayName: DisplayName

Declare an instance specific DisplayName to be shown while multiple instances of TorRuntime are in operation. The "previous" and "next" notification action buttons (only shown if more than 1 TorRuntime is in operation) will cycle between instances, showing that instance's current state. This should be different for each of your TorRuntime instances so the user may differentiate between more easily.

Link copied to clipboard
@JvmField
var enableActionRestart: Boolean

If true, a notification action will be applied which allows users to restart the TorRuntime instance via Action.RestartDaemon upon click.

Link copied to clipboard
@JvmField
var enableActionStop: Boolean

If true, a notification action will be applied which allows users to stop the TorRuntime instance via Action.StopDaemon upon click.

Link copied to clipboard
@JvmField
var iconData: Int

The drawable resource id of the notification icon which will be displayed when the instance of TorRuntime is in an operative state and receives data via TorEvent.BW.

Link copied to clipboard
@JvmField
val iconNotReady: Int

The drawable resource id of the notification icon which will be displayed when the instance of TorRuntime is in a non-operative state (i.e. not bootstrapped or network disabled).

Link copied to clipboard
@JvmField
val iconReady: Int

The drawable resource id of the notification icon which will be displayed when the instance of TorRuntime is in an operative state (i.e. bootstrapped & network enabled).