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

net.sf.fmj.media.rtp.util.RTPMediaThread Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.rtp.util;

import net.sf.fmj.media.util.*;

public class RTPMediaThread extends MediaThread
{
    public RTPMediaThread()
    {
        this("RTP thread");
    }

    public RTPMediaThread(Runnable r)
    {
        this(r, "RTP thread");
    }

    public RTPMediaThread(Runnable r, String name)
    {
        super(r, name);
    }

    public RTPMediaThread(String name)
    {
        super(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy