com.corundumstudio.socketio.AckRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netty-socketio Show documentation
Show all versions of netty-socketio Show documentation
Socket.IO server implemented on Java
/**
* Copyright 2012 Nikita Koksharov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.corundumstudio.socketio;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.atomic.AtomicBoolean;
import com.corundumstudio.socketio.listener.DataListener;
import com.corundumstudio.socketio.protocol.Packet;
import com.corundumstudio.socketio.protocol.PacketType;
/**
* Ack request received from Socket.IO client.
* You can always check is it true through
* {@link #isAckRequested()} method.
*
* You can call {@link #sendAckData} methods only during
* {@link DataListener#onData} invocation. If {@link #sendAckData}
* not called it will be invoked with empty arguments right after
* {@link DataListener#onData} method execution by server.
*
* This object is NOT actual anymore if {@link #sendAckData} was
* executed or {@link DataListener#onData} invocation finished.
*
*/
public class AckRequest {
private final Packet originalPacket;
private final SocketIOClient client;
private final AtomicBoolean sended = new AtomicBoolean();
public AckRequest(Packet originalPacket, SocketIOClient client) {
this.originalPacket = originalPacket;
this.client = client;
}
/**
* Check whether ack request was made
*
* @return true if ack requested by client
*/
public boolean isAckRequested() {
return originalPacket.isAckRequested();
}
/**
* Send ack data to client.
* Can be invoked only once during {@link DataListener#onData}
* method invocation.
*
* @param objs - ack data objects
*/
public void sendAckData(Object ... objs) {
List