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

org.asteriskjava.pbx.ChannelFactory Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.pbx;

/**
 * Currently this factories only purposes is to serve up globally unique channel
 * id's which every new channel must be assigned.
 * 
 * @author bsutton
 */
public class ChannelFactory
{

    private static long nextChannelId = 0;

    public static synchronized long getNextChannelId()
    {
        return ++ChannelFactory.nextChannelId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy