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

com.github.mauricio.async.db.mysql.decoder.AuthenticationSwitchRequestDecoder.scala Maven / Gradle / Ivy

package com.github.mauricio.async.db.mysql.decoder

import java.nio.charset.Charset
import io.netty.buffer.ByteBuf
import com.github.mauricio.async.db.mysql.message.server.{AuthenticationSwitchRequest, ServerMessage}
import com.github.mauricio.async.db.util.ChannelWrapper.bufferToWrapper

class AuthenticationSwitchRequestDecoder( charset : Charset ) extends MessageDecoder {
  def decode(buffer: ByteBuf): ServerMessage = {
    new AuthenticationSwitchRequest(
      buffer.readCString(charset),
      buffer.readUntilEOF(charset)
    )
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy