Interface SessionInterface

All Known Implementing Classes:
SessionService

@Component public interface SessionInterface
Session Service Interface
Since:
2024-03-16
Version:
1.1.1
Author:
SKN
Use Case:
Spring Boot Reactive
Dedicated To:
Logno, Atoshi and My Parents
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<org.springframework.web.server.WebSession>
    sessionRouteGetRequest(org.springframework.web.server.WebSession webSession)
    Method to get WebSession as response of GET request
  • Method Details

    • sessionRouteGetRequest

      reactor.core.publisher.Mono<org.springframework.web.server.WebSession> sessionRouteGetRequest(org.springframework.web.server.WebSession webSession) throws Exception
      Method to get WebSession as response of GET request
      Parameters:
      webSession - a WebSession as parameter
      Returns:
      a Mono of WebSession as a response
      Throws:
      Exception - an exception if WebSession GET request fails
      Since:
      v1.0.0