Searched refs:ClientSessionBehavior (Results 1 – 5 of 5) sorted by relevance
34 private ClientSessionBehavior sessionBehavior = ClientSessionBehavior.DEFAULT;126 public ClientSessionBehavior getSessionBehavior() in getSessionBehavior()363 public enum ClientSessionBehavior { enum in Mqtt5ClientOptions392 private ClientSessionBehavior(int code) { in ClientSessionBehavior() method in Mqtt5ClientOptions.ClientSessionBehavior409 public static ClientSessionBehavior getEnumValueFromInteger(int value) { in getEnumValueFromInteger()410 ClientSessionBehavior enumValue = enumMapping.get(value); in getEnumValueFromInteger()417 private static Map<Integer, ClientSessionBehavior> buildEnumMapping() { in buildEnumMapping()418 return Stream.of(ClientSessionBehavior.values()) in buildEnumMapping()419 .collect(Collectors.toMap(ClientSessionBehavior::getValue, Function.identity())); in buildEnumMapping()422 private static Map<Integer, ClientSessionBehavior> enumMapping = buildEnumMapping();[all …]
31 import software.amazon.awssdk.crt.mqtt5.Mqtt5ClientOptions.ClientSessionBehavior;152 .withSessionBehavior(ClientSessionBehavior.CLEAN) in New_UC2()259 .withSessionBehavior(ClientSessionBehavior.CLEAN) in New_UC4()496 .withSessionBehavior(ClientSessionBehavior.CLEAN) in ConnDC_UC6()759 .withSessionBehavior(ClientSessionBehavior.CLEAN) in ConnWS_UC6()1835 builder.withSessionBehavior(ClientSessionBehavior.REJOIN_ALWAYS); in Negotiated_Rejoin_Always()
33 import software.amazon.awssdk.crt.mqtt5.Mqtt5ClientOptions.ClientSessionBehavior;237 .withSessionBehavior(ClientSessionBehavior.CLEAN) in TestCreationFull()
74 … mqtt5options.getSessionBehavior().compareTo(Mqtt5ClientOptions.ClientSessionBehavior.CLEAN) <= 0); in s_toMqtt3ConnectionConfig()
320 clientOptionsBuilder.withSessionBehavior(Mqtt5ClientOptions.ClientSessionBehavior.CLEAN); in setupClients()