![JAR search and dependency download from the Maven repository](/logo.png)
com.twilio.sdk.resource.factory.QueueFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Java helper library for Twilio services
package com.twilio.sdk.resource.factory;
import com.twilio.sdk.TwilioRestException;
import com.twilio.sdk.resource.instance.Queue;
import org.apache.http.NameValuePair;
import java.util.List;
import java.util.Map;
/**
* The {@link QueueFactory} creates {@link Queue} instances, passing in a map of properties
*
* @author Christer Fahlgren
*
*/
public interface QueueFactory {
public Queue create(Map params) throws TwilioRestException;
public Queue create(List params) throws TwilioRestException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy