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

com.greenapi.client.pkg.api.methods.GreenApiQueues Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.greenapi.client.pkg.api.methods;

import com.greenapi.client.pkg.models.response.ClearMessagesQueueResp;
import com.greenapi.client.pkg.models.QueueMessage;
import lombok.AllArgsConstructor;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;

import java.util.List;

@AllArgsConstructor
public class GreenApiQueues {
    private String host;
    private String instanceId;
    private String token;
    private RestTemplate restTemplate;

    /**
     * The method is aimed for getting a list of messages in the queue to be sent.
     * Messages sending rate is managed by Messages sending delay parameter in settings.
     * https://greenapi.com/en/docs/api/queues/ShowMessagesQueue/
     */
    public ResponseEntity> showMessagesQueue() {

        String url = host +
            "/waInstance" + instanceId +
            "/showMessagesQueue/" +
            token;

        return restTemplate.exchange(url, HttpMethod.GET, null, new ParameterizedTypeReference<>() {
        });
    }

    /**
     * The method is aimed for clearing the queue of messages to be sent.
     * https://greenapi.com/en/docs/api/queues/ClearMessagesQueue/
     */
    public ResponseEntity clearMessagesQueue() {

        String url = host +
            "/waInstance" + instanceId +
            "/clearMessagesQueue/" +
            token;

        return restTemplate.exchange(url, HttpMethod.GET, null, ClearMessagesQueueResp.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy