com.twilio.base.Creator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio Show documentation
Show all versions of twilio Show documentation
Twilio Java Helper Library
package com.twilio.base;
import com.google.common.util.concurrent.ListenableFuture;
import com.twilio.Twilio;
import com.twilio.http.TwilioRestClient;
import java.util.concurrent.Callable;
/**
* Executor for creation of a resource.
*
* @param type of the resource
*/
public abstract class Creator {
/**
* Execute an async request using default client.
*
* @return future that resolves to requested object
*/
public ListenableFuture createAsync() {
return createAsync(Twilio.getRestClient());
}
/**
* Execute an async request using specified client.
*
* @param client client used to make request
* @return future that resolves to requested object
*/
public ListenableFuture createAsync(final TwilioRestClient client) {
return Twilio.getExecutorService().submit(new Callable() {
public T call() {
return create(client);
}
});
}
/**
* Execute a request using default client.
*
* @return Requested object
*/
public T create() {
return create(Twilio.getRestClient());
}
/**
* Execute a request using specified client.
*
* @param client client used to make request
* @return Requested object
*/
public abstract T create(final TwilioRestClient client);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy