Git Product home page Git Product logo

Comments (2)

dosubot avatar dosubot commented on May 28, 2024 3

πŸ€–

Yes, it is possible to implement an event handler like Pubsub or Kafka on Kratos. A similar issue was discussed in the Kratos repository under the title [Feature] Discussion on the definition and usage of event interface. The solution suggested was to define two interfaces, Sender and Receiver, with methods for sending, receiving, acknowledging, and not acknowledging messages. Here is the suggested implementation:

type Sender interface {
   Send(ctx context.Context, msg Message) error
}

type Receiver interface {
   Receive(ctx context.Context) (Message, error)
   Ack(msg Message) error
   Nack(msg Message) error
}

In this solution, the context is passed to the Send and Receive methods to provide runtime information. This approach can be adapted to work with different event-driven systems like Pubsub or Kafka.

You can find more details about this solution in the issue discussion. Also, this feature was referenced in the Kratos roadmap and in a pull request titled feat(events):add PubSub/Events.

Please let me know if you need further clarification or assistance.

Sources


This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research.

Help me be more useful! Please leave a πŸ‘ if this is helpful and πŸ‘Ž if it is irrelevant.

If you want to continue the conversation, start your reply with @dosu-bot.

from kratos.

dosubot avatar dosubot commented on May 28, 2024

πŸ€–

Hello @muhadif,

I'm Dosu, a bot designed to assist with the Kratos repository. I'm here to help you tackle bugs, answer your questions, and guide you on your journey to becoming a contributor. While we wait for a human maintainer, I'm here to provide assistance. I'm currently taking a look at your issue and will get back to you with a response shortly.

from kratos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.