Class NatsBodyBinder

java.lang.Object
io.micronaut.nats.bind.NatsBodyBinder
All Implemented Interfaces:
io.micronaut.core.bind.annotation.AnnotatedArgumentBinder<io.micronaut.messaging.annotation.MessageBody,Object,io.nats.client.Message>, io.micronaut.core.bind.ArgumentBinder<Object,io.nats.client.Message>, NatsAnnotatedArgumentBinder<io.micronaut.messaging.annotation.MessageBody>, NatsArgumentBinder<Object>

@Singleton public class NatsBodyBinder extends Object implements NatsAnnotatedArgumentBinder<io.micronaut.messaging.annotation.MessageBody>
Binds an argument of with the MessageBody annotation from the Message.
Since:
1.0.0
Author:
jgrimm
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.micronaut.core.bind.ArgumentBinder

    io.micronaut.core.bind.ArgumentBinder.BindingResult<T extends Object>
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    io.micronaut.core.bind.ArgumentBinder.BindingResult<Object>
    bind(io.micronaut.core.convert.ArgumentConversionContext<Object> context, io.nats.client.Message messageState)
     
    Class<io.micronaut.messaging.annotation.MessageBody>
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • NatsBodyBinder

      public NatsBodyBinder(NatsMessageSerDesRegistry serDesRegistry)
      Default constructor.
      Parameters:
      serDesRegistry - The registry to get a deserializer
  • Method Details

    • getAnnotationType

      public Class<io.micronaut.messaging.annotation.MessageBody> getAnnotationType()
      Specified by:
      getAnnotationType in interface io.micronaut.core.bind.annotation.AnnotatedArgumentBinder<io.micronaut.messaging.annotation.MessageBody,Object,io.nats.client.Message>
    • bind

      public io.micronaut.core.bind.ArgumentBinder.BindingResult<Object> bind(io.micronaut.core.convert.ArgumentConversionContext<Object> context, io.nats.client.Message messageState)
      Specified by:
      bind in interface io.micronaut.core.bind.ArgumentBinder<Object,io.nats.client.Message>