Giter Club home page Giter Club logo

Comments (3)

dosubot avatar dosubot commented on June 4, 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 June 4, 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.

dosubot avatar dosubot commented on June 4, 2024

Hi, @muhadif,

I'm helping the Kratos team manage their backlog and am marking this issue as stale. From what I understand, you inquired about implementing an event handler like Pubsub or Kafka on Kratos, and I responded, confirming that it is indeed possible and provided a suggested solution. I referenced a previous issue discussion and a related pull request, offering additional details and resources for further exploration.

Could you please confirm if this issue is still relevant to the latest version of the Kratos repository? If it is, kindly let the Kratos team know by commenting on the issue. Otherwise, feel free to close the issue yourself, or it will be automatically closed in 7 days.

Thank you for your understanding and cooperation.

Dosu

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.