NotificationInfo

class NotificationInfo @JvmOverloads constructor(val notificationId: Short, val channelId: String, val channelName: Int, val channelDescription: Int, val channelShowBadge: Boolean = false, val channelImportanceLow: Boolean = false)(source)

Holder for Foreground Service Notification and NotificationChannel configuration info used to instantiate Factory. Is validated upon invocation of TorServiceConfig.Foreground.Companion.Builder.

Constructors

Link copied to clipboard
@JvmOverloads
constructor(notificationId: Short, channelId: String, channelName: Int, channelDescription: Int, channelShowBadge: Boolean = false, channelImportanceLow: Boolean = false)

Properties

Link copied to clipboard
@JvmField
val channelDescription: Int

The id of the string resource to resolve to utilize for the NotificationChannel description.

Link copied to clipboard
@JvmField
val channelId: String

The string value to utilize for NotificationChannel.getId.

Link copied to clipboard
@JvmField
val channelImportanceLow: Boolean = false
Link copied to clipboard
@JvmField
val channelName: Int

The id of the string resource to resolve to utilize for the NotificationChannel name.

Link copied to clipboard
@JvmField
val channelShowBadge: Boolean = false

The value to utilize for NotificationChannel.setShowBadge.

Link copied to clipboard
@JvmField
val notificationId: Short

The integer value to utilize when posting the Notification to NotificationManager.

Functions

Link copied to clipboard
fun validate(context: Context): Pair<String, String>

Called from TorServiceConfig.Foreground.Companion.Builder to resolve string resources and validate parameters for correctness.