Git Product home page Git Product logo

Comments (5)

spetz avatar spetz commented on August 30, 2024

Could you provide a sample code in which the extension is being used?

from convey.

amgad1982 avatar amgad1982 commented on August 30, 2024

the sample folder you did provider order service and delivring ones,
i already know how to fix

in RabbitMqSubscriber i replaced IApplicationBuilder with IServiceProvider
and fix its extension to pass the app.ApplicationServices

in extension:
public static IBusSubscriber UseRabbitMq(this IApplicationBuilder app) => new RabbitMqSubscriber(app.ApplicationServices);

public RabbitMqSubscriber(IServiceProvider app)
{
_serviceProvider = app.GetRequiredService();
_connection = app.GetRequiredService();
_channel = _connection.CreateModel();
_publisher = app.GetRequiredService();
_rabbitMqSerializer = app.GetRequiredService();
_conventionsProvider = app.GetRequiredService();
_contextProvider = app.GetRequiredService();
_logger = app.GetService<ILogger>();
_exceptionToMessageMapper = _serviceProvider.GetService() ??
new EmptyExceptionToMessageMapper();
_pluginsExecutor = _serviceProvider.GetService();
_options = _serviceProvider.GetService();
_loggerEnabled = _options.Logger?.Enabled ?? false;
_retries = _options.Retries >= 0 ? _options.Retries : 3;
_retryInterval = _options.RetryInterval > 0 ? _options.RetryInterval : 2;
}

from convey.

amgad1982 avatar amgad1982 commented on August 30, 2024

i think its something related to upgrading to 3.0 version I struggled with building the project and finally had to put

<FrameworkReference Include="Microsoft.AspNetCore.App" />
in all the project files that have build issues

from convey.

spetz avatar spetz commented on August 30, 2024

Hmm, that's indeed a little bit strange, as the samples should work out of the box. Thanks for pointing that out, as I've just realized that RabbitMqSubscriber needs a proper container scope management, thus it will be fixed anyway :).

from convey.

spetz avatar spetz commented on August 30, 2024

Fixed, feel free to reopen the issue if problem still occurs. We will be doing some serious refactoring regarding the RabbitMQ package in the near future.

from convey.

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.