All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.ditchoom.mqtt.controlpacket.SubscribeRequest.kt Maven / Gradle / Ivy

@file:Suppress("EXPERIMENTAL_API_USAGE")

package com.ditchoom.mqtt.controlpacket

import com.ditchoom.mqtt.topic.Filter

interface ISubscribeRequest : ControlPacket {
    val packetIdentifier: Int
    fun expectedResponse(): ISubscribeAcknowledgement
    fun getTopics(): List

    companion object {
        const val controlPacketValue: Byte = 8
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy