Package com.unfbx.chatgpt.sse
Class PluginListener<R extends PluginParam,T>
- java.lang.Object
-
- okhttp3.sse.EventSourceListener
-
- com.unfbx.chatgpt.sse.PluginListener<R,T>
-
- Direct Known Subclasses:
DefaultPluginListener
public abstract class PluginListener<R extends PluginParam,T> extends okhttp3.sse.EventSourceListener描述: 插件开发返回信息收集sse监听器- Author:
- https:www.unfbx.com 2023-08-18
-
-
Constructor Summary
Constructors Constructor Description PluginListener(OpenAiStreamClient client, okhttp3.sse.EventSourceListener eventSourceListener, PluginAbstract<R,T> plugin, ChatCompletion chatCompletion)构造方法必备四个元素
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonClosed(okhttp3.sse.EventSource eventSource)voidonClosedAfter()sse关闭后处理,第二次请求方法voidonEvent(okhttp3.sse.EventSource eventSource, String id, String type, String data)voidonFailure(okhttp3.sse.EventSource eventSource, Throwable t, okhttp3.Response response)voidonOpen(okhttp3.sse.EventSource eventSource, okhttp3.Response response)
-
-
-
Constructor Detail
-
PluginListener
public PluginListener(OpenAiStreamClient client, okhttp3.sse.EventSourceListener eventSourceListener, PluginAbstract<R,T> plugin, ChatCompletion chatCompletion)
构造方法必备四个元素- Parameters:
client- OpenAiStreamClienteventSourceListener- 处理真实第二次sse请求的自定义监听plugin- 插件信息chatCompletion- 请求参数
-
-
Method Detail
-
onClosedAfter
public void onClosedAfter()
sse关闭后处理,第二次请求方法
-
onEvent
public final void onEvent(okhttp3.sse.EventSource eventSource, String id, String type, String data)- Overrides:
onEventin classokhttp3.sse.EventSourceListener
-
onClosed
public final void onClosed(okhttp3.sse.EventSource eventSource)
- Overrides:
onClosedin classokhttp3.sse.EventSourceListener
-
onOpen
public void onOpen(okhttp3.sse.EventSource eventSource, okhttp3.Response response)- Overrides:
onOpenin classokhttp3.sse.EventSourceListener
-
onFailure
public void onFailure(okhttp3.sse.EventSource eventSource, Throwable t, okhttp3.Response response)- Overrides:
onFailurein classokhttp3.sse.EventSourceListener
-
-