Exemplo n.º 1
0
 public void SetSpecificRRHandler(uint fromAddress, Port fromPort, FramedSource.OnCloseFunc handlerTask, IntPtr clientData)
 {
     impl.setSpecificRRHandler(Native, fromAddress, fromPort, new WeakDelegate <FramedSource.OnCloseFunc>(handlerTask), clientData);
 }
Exemplo n.º 2
0
 public void SetByeHandler(FramedSource.OnCloseFunc handlerTask, IntPtr clientData, uint handleActiveParticipantsOnly)
 {
     impl.setByeHandler(Native, new WeakDelegate <FramedSource.OnCloseFunc>(handlerTask), clientData, handleActiveParticipantsOnly);
 }
Exemplo n.º 3
0
 public void SetRRHandler(FramedSource.OnCloseFunc handlerTask, IntPtr clientData)
 {
     impl.setRRHandler(Native, new WeakDelegate <FramedSource.OnCloseFunc>(handlerTask), clientData);
 }
Exemplo n.º 4
0
 public uint StartPlaying(MediaSource source, FramedSource.OnCloseFunc afterFunc, IntPtr afterClientData)
 {
     return(impl.startPlaying(Native, source, new WeakDelegate <FramedSource.OnCloseFunc>(afterFunc), afterClientData));
 }
Exemplo n.º 5
0
 public void GetNextFrame(string to, uint maxSize, FramedSource.AfterGettingFunc afterGettingFunc, IntPtr afterGettingClientData, FramedSource.OnCloseFunc onCloseFunc, IntPtr onCloseClientData)
 {
     impl.getNextFrame(Native, to, maxSize, new WeakDelegate <FramedSource.AfterGettingFunc>(afterGettingFunc), afterGettingClientData, new WeakDelegate <FramedSource.OnCloseFunc>(onCloseFunc), onCloseClientData);
 }
Exemplo n.º 6
0
 public virtual uint CreateEventTrigger(FramedSource.OnCloseFunc eventHandlerProc)
 {
     return(impl.createEventTrigger(Native, new WeakDelegate <FramedSource.OnCloseFunc>(eventHandlerProc)));
 }
Exemplo n.º 7
0
 public virtual void RescheduleDelayedTask(IntPtr task, long microseconds, FramedSource.OnCloseFunc proc, IntPtr clientData)
 {
     impl.rescheduleDelayedTask(Native, task, microseconds, new WeakDelegate <FramedSource.OnCloseFunc>(proc), clientData);
 }
Exemplo n.º 8
0
 public virtual IntPtr ScheduleDelayedTask(long microseconds, FramedSource.OnCloseFunc proc, IntPtr clientData)
 {
     return(impl.scheduleDelayedTask(Native, microseconds, new WeakDelegate <FramedSource.OnCloseFunc>(proc), clientData));
 }