com.aliyun.openservices.ons.api.SendCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw-boot-starter-aliyun-ons Show documentation
Show all versions of gw-boot-starter-aliyun-ons Show documentation
A Java Utils Libraray By Geewit
package com.aliyun.openservices.ons.api;
/**
* 异步发送完成后, 回调接口.
*/
public interface SendCallback {
/**
* 发送成功回调的方法.
* @param sendResult 发送结果
*/
void onSuccess(final SendResult sendResult);
/**
* 发送失败回调方法.
* @param context 失败上下文.
*/
void onException(final OnExceptionContext context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy