接口 HandleWS
-
- 所有超级接口:
AutoCloseable
- 所有已知实现类:
RestClient
public interface HandleWS extends AutoCloseable
- 作者:
- Yun
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 RestfulResponsedoDelete()RestfulResponsedoGet()<T> RestfulResponsedoPatch(T content)<T> RestfulResponsedoPost(T content)<T> RestfulResponsedoPut(T content)RestClientregisterListener(RestClientListener listener)RestClientunregisterListener(RestClientListener listener)-
从接口继承的方法 java.lang.AutoCloseable
close
-
-
-
-
方法详细资料
-
registerListener
RestClient registerListener(RestClientListener listener)
-
unregisterListener
RestClient unregisterListener(RestClientListener listener)
-
doGet
RestfulResponse doGet()
-
doPost
<T> RestfulResponse doPost(T content)
-
doPut
<T> RestfulResponse doPut(T content)
-
doPatch
<T> RestfulResponse doPatch(T content)
-
doDelete
RestfulResponse doDelete()
-
-