All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teststeps.thekla4j.websocket.stomp.spring.SpringSockJsSession Maven / Gradle / Ivy

package com.teststeps.thekla4j.websocket.stomp.spring;

import io.vavr.collection.List;
import lombok.With;
import org.springframework.messaging.simp.stomp.StompSession;

@With
public record SpringSockJsSession(
    String url,
    StompSession session,
    SpringStompSessionConnectHandler connectSessionHandler
) {

  public static SpringSockJsSession empty() {
    return new SpringSockJsSession(
        null,
        null,
        null
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy