vote up 0 vote down star

The error is:

Method 'Private Sub ProcessToolWork()' does not have a signature compatible with delegate 'Delegate Sub WaitCallback(state As Object)'.

What's the deal here? I've never experienced this error spawning a thread in this fashion.

Here are my routine definitions:

Public Sub ProcessWork()
      ThreadPool.QueueUserWorkItem(AddressOf ProcessToolWork)
End Sub

Private Sub ProcessToolWork()

End Sub

See anything wrong?

I've also tried making a new WaitCallback for this item like so:

ThreadPool.QueueUserWorkItem(New WaitCallback(AddressOf ProcessToolWork))
flag

67% accept rate

1 Answer

vote up 3 vote down check

WaitCallback takes a state argument (of type Object). Even if you ignore it, you have to put it in your method signature:

Private Sub ProcessToolWork(ByVal ignored As Object)

End Sub
link|flag
Is this only necessary with Options Explicit turned on? – hypoxide May 5 at 15:05
I don't know - but I suspect that with Option Explicit off it would just fail at execution time instead. – Jon Skeet May 5 at 15:12
Huh. I'm vexed. In a previous project I queued a thread successfully in this fashion: Private Sub m_btnCollectData_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles m_btnCollectData.Click Threading.ThreadPool.QueueUserWorkItem(AddressOf DoDataCollector) End Sub Private Sub DoDataCollector() 'stuff End Sub The difference being that it was a web application. – hypoxide May 5 at 15:18
Hmm. Not sure. Sounds like a bad idea to not implement the right signature though. – Jon Skeet May 5 at 16:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.