com.github.jamesnetherton.zulip.client.api.event.EventQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.event;
import com.github.jamesnetherton.zulip.client.api.event.response.RegisterEventQueueApiResponse;
/**
* Defines a Zulip event queue.
*/
public class EventQueue {
private final RegisterEventQueueApiResponse delegate;
public EventQueue(RegisterEventQueueApiResponse delegate) {
this.delegate = delegate;
}
public String getQueueId() {
return delegate.getQueueId();
}
public long getLastEventId() {
return delegate.getLastEventId();
}
}