Search in sources :

Example 6 with CloudJobSchedule

use of com.microsoft.azure.batch.protocol.models.CloudJobSchedule in project azure-sdk-for-java by Azure.

the class JobSchedulesImpl method listAsync.

/**
     * Lists all of the job schedules in the specified account.
     *
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listAsync(final ListOperationCallback<CloudJobSchedule> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    final JobScheduleListOptions jobScheduleListOptions = null;
    String filter = null;
    String select = null;
    String expand = null;
    Integer maxResults = null;
    Integer timeout = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<List<CloudJobSchedule>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> result = listDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    listNextAsync(result.getBody().getNextPageLink(), null, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ServiceCall(com.microsoft.rest.ServiceCall) CloudJobSchedule(com.microsoft.azure.batch.protocol.models.CloudJobSchedule) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) JobScheduleListOptions(com.microsoft.azure.batch.protocol.models.JobScheduleListOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList)

Example 7 with CloudJobSchedule

use of com.microsoft.azure.batch.protocol.models.CloudJobSchedule in project azure-sdk-for-java by Azure.

the class JobSchedulesImpl method listNextAsync.

/**
     * Lists all of the job schedules in the specified account.
     *
     * @param nextPageLink The NextLink from the previous successful call to List operation.
     * @param serviceCall the ServiceCall object tracking the Retrofit calls
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listNextAsync(final String nextPageLink, final ServiceCall serviceCall, final ListOperationCallback<CloudJobSchedule> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (nextPageLink == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter nextPageLink is required and cannot be null."));
        return null;
    }
    final JobScheduleListNextOptions jobScheduleListNextOptions = null;
    String clientRequestId = null;
    Boolean returnClientRequestId = null;
    DateTime ocpDate = null;
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.listNext(nextPageLink, this.client.acceptLanguage(), clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    serviceCall.newCall(call);
    call.enqueue(new ServiceResponseCallback<List<CloudJobSchedule>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> result = listNextDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    listNextAsync(result.getBody().getNextPageLink(), null, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : CloudJobSchedule(com.microsoft.azure.batch.protocol.models.CloudJobSchedule) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) JobScheduleListNextOptions(com.microsoft.azure.batch.protocol.models.JobScheduleListNextOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList)

Example 8 with CloudJobSchedule

use of com.microsoft.azure.batch.protocol.models.CloudJobSchedule in project azure-sdk-for-java by Azure.

the class JobSchedulesImpl method listAsync.

/**
     * Lists all of the job schedules in the specified account.
     *
     * @param jobScheduleListOptions Additional parameters for the operation
     * @param serviceCallback the async ServiceCallback to handle successful and failed responses.
     * @throws IllegalArgumentException thrown if callback is null
     * @return the {@link Call} object
     */
public ServiceCall listAsync(final JobScheduleListOptions jobScheduleListOptions, final ListOperationCallback<CloudJobSchedule> serviceCallback) throws IllegalArgumentException {
    if (serviceCallback == null) {
        throw new IllegalArgumentException("ServiceCallback is required for async calls.");
    }
    if (this.client.apiVersion() == null) {
        serviceCallback.failure(new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."));
        return null;
    }
    Validator.validate(jobScheduleListOptions, serviceCallback);
    String filter = null;
    if (jobScheduleListOptions != null) {
        filter = jobScheduleListOptions.filter();
    }
    String select = null;
    if (jobScheduleListOptions != null) {
        select = jobScheduleListOptions.select();
    }
    String expand = null;
    if (jobScheduleListOptions != null) {
        expand = jobScheduleListOptions.expand();
    }
    Integer maxResults = null;
    if (jobScheduleListOptions != null) {
        maxResults = jobScheduleListOptions.maxResults();
    }
    Integer timeout = null;
    if (jobScheduleListOptions != null) {
        timeout = jobScheduleListOptions.timeout();
    }
    String clientRequestId = null;
    if (jobScheduleListOptions != null) {
        clientRequestId = jobScheduleListOptions.clientRequestId();
    }
    Boolean returnClientRequestId = null;
    if (jobScheduleListOptions != null) {
        returnClientRequestId = jobScheduleListOptions.returnClientRequestId();
    }
    DateTime ocpDate = null;
    if (jobScheduleListOptions != null) {
        ocpDate = jobScheduleListOptions.ocpDate();
    }
    DateTimeRfc1123 ocpDateConverted = null;
    if (ocpDate != null) {
        ocpDateConverted = new DateTimeRfc1123(ocpDate);
    }
    Call<ResponseBody> call = service.list(this.client.apiVersion(), this.client.acceptLanguage(), filter, select, expand, maxResults, timeout, clientRequestId, returnClientRequestId, ocpDateConverted, this.client.userAgent());
    final ServiceCall serviceCall = new ServiceCall(call);
    call.enqueue(new ServiceResponseCallback<List<CloudJobSchedule>>(serviceCallback) {

        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            try {
                ServiceResponseWithHeaders<PageImpl<CloudJobSchedule>, JobScheduleListHeaders> result = listDelegate(response);
                serviceCallback.load(result.getBody().getItems());
                if (result.getBody().getNextPageLink() != null && serviceCallback.progress(result.getBody().getItems()) == ListOperationCallback.PagingBahavior.CONTINUE) {
                    JobScheduleListNextOptions jobScheduleListNextOptions = null;
                    if (jobScheduleListOptions != null) {
                        jobScheduleListNextOptions = new JobScheduleListNextOptions();
                        jobScheduleListNextOptions.withClientRequestId(jobScheduleListOptions.clientRequestId());
                        jobScheduleListNextOptions.withReturnClientRequestId(jobScheduleListOptions.returnClientRequestId());
                        jobScheduleListNextOptions.withOcpDate(jobScheduleListOptions.ocpDate());
                    }
                    listNextAsync(result.getBody().getNextPageLink(), jobScheduleListNextOptions, serviceCall, serviceCallback);
                } else {
                    serviceCallback.success(new ServiceResponseWithHeaders<>(serviceCallback.get(), result.getHeaders(), result.getResponse()));
                }
            } catch (BatchErrorException | IOException exception) {
                serviceCallback.failure(exception);
            }
        }
    });
    return serviceCall;
}
Also used : ServiceCall(com.microsoft.rest.ServiceCall) CloudJobSchedule(com.microsoft.azure.batch.protocol.models.CloudJobSchedule) DateTime(org.joda.time.DateTime) ServiceResponseWithHeaders(com.microsoft.rest.ServiceResponseWithHeaders) ResponseBody(okhttp3.ResponseBody) JobScheduleListNextOptions(com.microsoft.azure.batch.protocol.models.JobScheduleListNextOptions) DateTimeRfc1123(com.microsoft.rest.DateTimeRfc1123) List(java.util.List) PagedList(com.microsoft.azure.PagedList)

Aggregations

CloudJobSchedule (com.microsoft.azure.batch.protocol.models.CloudJobSchedule)8 DateTimeRfc1123 (com.microsoft.rest.DateTimeRfc1123)8 ResponseBody (okhttp3.ResponseBody)8 DateTime (org.joda.time.DateTime)8 PagedList (com.microsoft.azure.PagedList)6 ServiceResponseWithHeaders (com.microsoft.rest.ServiceResponseWithHeaders)6 ServiceCall (com.microsoft.rest.ServiceCall)4 List (java.util.List)4 JobScheduleListNextOptions (com.microsoft.azure.batch.protocol.models.JobScheduleListNextOptions)3 JobScheduleListHeaders (com.microsoft.azure.batch.protocol.models.JobScheduleListHeaders)2 JobScheduleListOptions (com.microsoft.azure.batch.protocol.models.JobScheduleListOptions)2 PageImpl (com.microsoft.azure.batch.protocol.models.PageImpl)2 JobScheduleGetOptions (com.microsoft.azure.batch.protocol.models.JobScheduleGetOptions)1