![JAR search and dependency download from the Maven repository](/logo.png)
com.github.xingshuangs.iot.net.AckCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot-communication Show documentation
Show all versions of iot-communication Show documentation
目前它只是一个物联网通信的工具,包含
1、西门子S7通信协议,支持西门子S1500,S1200,S400,S300,S200Smart,西门子机床828D;
2、Modbus通信协议,支持ModbusTcp, ModbusRtuOverTcp, ModbusAsciiOverTcp, ModbusTcpServer;
3、三菱Melsec(MC)通信协议,支持PLC iQ-R系列, Q/L系列, QnA系列, A系列, 目前只测试了L系列和FX5U;
4、RTSP, RTCP, RTP, H264, MP4 (FMP4)协议,RTSP + H264 + FMP4 + WebSocket + MSE + WEB;
5、基础字节数组解析转换工具;
The newest version!
/*
* MIT License
*
* Copyright (c) 2021-2099 Oscura (xingshuang)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.xingshuangs.iot.net;
import lombok.Getter;
import java.time.LocalDateTime;
import java.util.concurrent.CompletableFuture;
/**
* Response callback class.
* (响应的回调)
*
* @author xingshuang
*/
@Getter
public class AckCallback {
/**
* Response data.
* (响应数据)
*/
protected T ackData;
/**
* Data listener for callback.
* (数据响应监听器)
*/
protected final IAckListener listener;
/**
* Flag, is completed.
* (是否完成)
*/
protected boolean completed;
/**
* Error message for callback.
* (错误消息)
*/
protected String errorMessage;
/**
* Timeout in millisecond.
* (超时时间ms)
*/
protected final long timeoutMs;
/**
* Lock object.
* (锁对象)
*/
protected final Object lock = new Object();
/**
* Object create time.
* (创建时间)
*/
protected final LocalDateTime createTime = LocalDateTime.now();
public AckCallback() {
this(null);
}
public AckCallback(IAckListener listener) {
this.ackData = null;
this.completed = false;
this.timeoutMs = 10_000;
this.listener = listener;
}
/**
* Response success.
* (成功响应)
*
* @param ackPackage response package data
*/
public void responseOk(T ackPackage) {
this.ackData = ackPackage;
this.completed = true;
this.errorMessage = "";
synchronized (this.lock) {
this.lock.notifyAll();
}
if (this.listener != null) {
CompletableFuture.runAsync(() -> this.listener.ok(ackPackage));
}
}
/**
* Response failed.
* (失败响应)
*
* @param message error message
*/
public void responseFail(String message) {
this.ackData = null;
this.completed = true;
this.errorMessage = message;
synchronized (this.lock) {
this.lock.notifyAll();
}
if (this.listener != null) {
CompletableFuture.runAsync(() -> this.listener.fail(message));
}
}
/**
* Wait for more data.
* (等待数据)
*/
public void waitData() {
try {
synchronized (this.lock) {
this.lock.wait(this.timeoutMs);
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
/**
* Wait for more data.
* (等待数据)
*
* @param timeout timeout in millisecond
*/
public void waitData(long timeout) {
try {
synchronized (this.lock) {
this.lock.wait(timeout);
}
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy