node.js extension: Is it possible to set Handle<Value>'s without ::New

I'm writing a node.js extension that has a processing thread, and I need to be able to set some values and then call a javascript callback within the processing loop.

When I call String::New or Number::New while processing, it causes allocation, which crashes the application. Is it possible to set the value of a Handle without using something like Number::New and causing allocation?