mesibo/conferencing

Get recent conference call list

adisiji opened this issue · 2 comments

Hi,
I'm trying to get list of recent call from ReadDbSession with this code:

    val listener = object : Mesibo.MessageListener {
        override fun Mesibo_onMessage(p0: Mesibo.MessageParams?, p1: ByteArray?): Boolean {
            if (p0 != null) {
                trySend(p0)
            }
            return true
        }

        override fun Mesibo_onMessageStatus(p0: Mesibo.MessageParams?) {}

        override fun Mesibo_onActivity(p0: Mesibo.MessageParams?, p1: Int) {}

        override fun Mesibo_onLocation(p0: Mesibo.MessageParams?, p1: Mesibo.Location?) {}

        override fun Mesibo_onFile(p0: Mesibo.MessageParams?, p1: Mesibo.FileInfo?) {}
    }
    val readDbS = Mesibo.ReadDbSession(listener).apply {
        enableMessages(false)
        enableIncomingCalls(true)
        enableOutgoingCalls(true)
        enableMissedCalls(true)
        enableCalls(true)
    }
     val syncListener = Mesibo.SyncListener { p0 ->
        if (p0 > 0) {
            readDbS.read(p0)
        }
    }
     val result = readDbS.read(READ_COUNT)
     if (result < READ_COUNT) {
         readDbS.sync(READ_COUNT - result, syncListener)
     }
    Mesibo.addListener(listener)
    Mesibo.addListener(syncListener)

But unfortunately this only return the result of individual call. How to get list recent call of conference call?

*PS: What I do for make a conference call is like the Android example here in the repo.

Android SDK Mesibo Version:

  • MESIBO_API = "1.6.4"
  • MESIBO_CALLS = "1.6.4"
  • MESIBO_UI = "1.6.4"

Thank You

you are right! The current call list only includes p2p calls as conferencing logs are more involved. The calls logs for conferencing is planned for next month. It will include APIs for client and server side.

Okay. Great!