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

org.mariadb.r2dbc.message.ServerMessage Maven / Gradle / Ivy

The newest version!
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2020-2024 MariaDB Corporation Ab

package org.mariadb.r2dbc.message;

public interface ServerMessage {

  default boolean ending() {
    return false;
  }

  default boolean resultSetEnd() {
    return false;
  }

  default int refCnt() {
    return -1000;
  }

  default boolean release() {
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy