Re: newbie questions

2007-08-06 Thread James Strachan
On 8/6/07, mat wang <[EMAIL PROTECTED]> wrote: > On 8/6/07, James Strachan <[EMAIL PROTECTED]> wrote: > > > > On 8/6/07, mat wang <[EMAIL PROTECTED]> wrote: > > > Thanks a lot for your detailed answers. After reading the documents of > > > Camel, the materials were not enough for me to grab the who

Re: newbie questions

2007-08-06 Thread mat wang
On 8/6/07, James Strachan <[EMAIL PROTECTED]> wrote: > > On 8/6/07, mat wang <[EMAIL PROTECTED]> wrote: > > Thanks a lot for your detailed answers. After reading the documents of > > Camel, the materials were not enough for me to grab the whole > picture. I > > have to read some of the source code

Re: newbie questions

2007-08-06 Thread James Strachan
On 8/6/07, mat wang <[EMAIL PROTECTED]> wrote: > Thanks a lot for your detailed answers. After reading the documents of > Camel, the materials were not enough for me to grab the whole picture. I > have to read some of the source code. > > I found out in DefaultEndpoint class: > public int has

Re: newbie questions

2007-08-05 Thread mat wang
Thanks a lot for your detailed answers. After reading the documents of Camel, the materials were not enough for me to grab the whole picture. I have to read some of the source code. I found out in DefaultEndpoint class: public int hashCode() { return endpointUri.hashCode() * 37 + 1;

Re: newbie questions

2007-08-03 Thread James Strachan
On 8/3/07, mat wang <[EMAIL PROTECTED]> wrote: > Why A Producer extends Processor but A Consumer NOT? Great question :) So when you create a producer, you just want to pass message exchanges into it - so you can treat a producer just like any kind of Processor object and just call process(). Whe