Sławomir Rosiek
Sławomir Rosiek

Reputation: 4073

NServiceBus and pooling

I must consume external webservice that contains three methods: start job, check job state, get job results. May I use Schedule feature from NServiceBus for checking if webservice has done his job or maybe I should use sagas with timeout?

Upvotes: 1

Views: 130

Answers (2)

MeTitus
MeTitus

Reputation: 3428

Why not a simple Windows Service with Quartz.net?

Upvotes: 0

Adam Fyles
Adam Fyles

Reputation: 6050

This sounds like a workflow to me so I would highly consider using a Saga.

Upvotes: 3

Related Questions