Hello
I’ve been trying to figure out how to schedule a job with specific queue name.
Tried with
BackgroundJob.Schedule( () => client.Create(() = > some method, state), timespan);
the compiled all good, but when executed, throwing exception:
Anonymous functions delegates and lambda expressions aren’t supported in job method parameters: it’s very hard to serialize them and all their scope in general.
Tried with:
Client.Schedule(() => client.Create(() = > some method, state), timespan);
the compiled all good, but when executed, throwing exception:
Anonymous functions delegates and lambda expressions aren’t supported in job method parameters: it’s very hard to serialize them and all their scope in general.
Anyone can help please?
Many thanks
Jimmy