Interface UniRxInvoker

  • All Superinterfaces:
    jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
    All Known Implementing Classes:
    UniRxInvokerImpl

    public interface UniRxInvoker
    extends jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> delete()  
      <T> io.smallrye.mutiny.Uni<T> delete​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> delete​(Class<T> responseType)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> get()  
      <T> io.smallrye.mutiny.Uni<T> get​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> get​(Class<T> responseType)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> head()  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> method​(String name)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> method​(String name, jakarta.ws.rs.client.Entity<?> entity)  
      <T> io.smallrye.mutiny.Uni<T> method​(String name, jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> method​(String name, jakarta.ws.rs.client.Entity<?> entity, Class<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> method​(String name, jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> method​(String name, Class<T> responseType)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> options()  
      <T> io.smallrye.mutiny.Uni<T> options​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> options​(Class<T> responseType)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> post​(jakarta.ws.rs.client.Entity<?> entity)  
      <T> io.smallrye.mutiny.Uni<T> post​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> type)  
      <T> io.smallrye.mutiny.Uni<T> post​(jakarta.ws.rs.client.Entity<?> entity, Class<T> clazz)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> put​(jakarta.ws.rs.client.Entity<?> entity)  
      <T> io.smallrye.mutiny.Uni<T> put​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> type)  
      <T> io.smallrye.mutiny.Uni<T> put​(jakarta.ws.rs.client.Entity<?> entity, Class<T> clazz)  
      io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> trace()  
      <T> io.smallrye.mutiny.Uni<T> trace​(jakarta.ws.rs.core.GenericType<T> responseType)  
      <T> io.smallrye.mutiny.Uni<T> trace​(Class<T> responseType)  
    • Method Detail

      • get

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> get()
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • get

        <T> io.smallrye.mutiny.Uni<T> get​(Class<T> responseType)
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • get

        <T> io.smallrye.mutiny.Uni<T> get​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • put

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> put​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • put

        <T> io.smallrye.mutiny.Uni<T> put​(jakarta.ws.rs.client.Entity<?> entity,
                                          Class<T> clazz)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • put

        <T> io.smallrye.mutiny.Uni<T> put​(jakarta.ws.rs.client.Entity<?> entity,
                                          jakarta.ws.rs.core.GenericType<T> type)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • post

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> post​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • post

        <T> io.smallrye.mutiny.Uni<T> post​(jakarta.ws.rs.client.Entity<?> entity,
                                           Class<T> clazz)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • post

        <T> io.smallrye.mutiny.Uni<T> post​(jakarta.ws.rs.client.Entity<?> entity,
                                           jakarta.ws.rs.core.GenericType<T> type)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • delete

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> delete()
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • delete

        <T> io.smallrye.mutiny.Uni<T> delete​(Class<T> responseType)
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • delete

        <T> io.smallrye.mutiny.Uni<T> delete​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • head

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> head()
        Specified by:
        head in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • options

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> options()
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • options

        <T> io.smallrye.mutiny.Uni<T> options​(Class<T> responseType)
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • options

        <T> io.smallrye.mutiny.Uni<T> options​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • trace

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> trace()
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • trace

        <T> io.smallrye.mutiny.Uni<T> trace​(Class<T> responseType)
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • trace

        <T> io.smallrye.mutiny.Uni<T> trace​(jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> method​(String name)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        <T> io.smallrye.mutiny.Uni<T> method​(String name,
                                             Class<T> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        <T> io.smallrye.mutiny.Uni<T> method​(String name,
                                             jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        io.smallrye.mutiny.Uni<jakarta.ws.rs.core.Response> method​(String name,
                                                                   jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        <T> io.smallrye.mutiny.Uni<T> method​(String name,
                                             jakarta.ws.rs.client.Entity<?> entity,
                                             Class<T> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>
      • method

        <T> io.smallrye.mutiny.Uni<T> method​(String name,
                                             jakarta.ws.rs.client.Entity<?> entity,
                                             jakarta.ws.rs.core.GenericType<T> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<io.smallrye.mutiny.Uni<?>>