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
The color resource id to apply to the notification when the instance of TorRuntime is in an operative state (i.e. bootstrapped & network enabled).
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.
If true
, a notification action will be applied which allows users to restart the TorRuntime instance via Action.RestartDaemon upon click.
If true
, a notification action will be applied which allows users to stop the TorRuntime instance via Action.StopDaemon upon click.
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.
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).
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).