createSubscriber

Creates a publisher instance.

Return

A subscriber instance.

Samples

import com.millicast.Core
fun main() { 
   //sampleStart 
   Core.initialize()
val subscriber = Core.createSubscriber()
// from there, the subscriber instance will be available

// up until you don't need it anymore and will be able to call
subscriber.release() 
   //sampleEnd
}