| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 months |
| seen | Feb 24 at 16:18 | |
| stats | profile views | 3 |
|
Feb 5 |
comment |
Deleting handler from pipeline I see that using setPipeline() sets the default ChannelPipeline which is cloned when a new Channel is created. And using setPipelineFactory() sets the ChannelPipelineFactory which creates a new ChannelPipeline for each new Channel. Any issues with me using setPipeline() for the bootstrap? |
|
Feb 5 |
comment |
Deleting handler from pipeline Ok, I follow you. I was confused there. If I get the pipeline, change that, and then add the Pipeline (not the PipelineFactory) to the bootstrap will that be ok? Using "this.bootstrap.setPipeline(myNewPipeline);" instead of "this.bootstrap.setPipelineFactory(this.pipelineFactory);". |
|
Feb 3 |
comment |
Netty FrameDecoder instance state Ok, I see that it will allow me to keep the state information on my processing handy and with less fuss. Thank you for help. |
|
Feb 1 |
awarded | Commentator |
|
Feb 1 |
comment |
Deleting handler from pipeline I output this.pipelineFactory.getPipeline().hashCode()) and got back pipeline > 545768040. When I output this.pipelineFactory.getPipeline() I got this: DefaultChannelPipeline{(framer = xxx.nettynio.VariableLengthFrameDecoder), (hexdump = xxx.nettynio.HexDumpHandler), (handler = xxx.nettynio.ListenerServerHandler)}. |
|
Feb 1 |
comment |
Deleting handler from pipeline I tried what you suggested (I tried that before) but nothing happened: ChannelPipeline cp = this.pipelineFactory.getPipeline(); cp.remove("hexdump"); |
|
Feb 1 |
comment |
Deleting handler from pipeline I do understand what you are saying about the proper usage. I was experimenting with being able to load all my handlers in the pipeline and then removing a select few before starting to listen on the port. I want to pass in a parameter relating to debugging that would tell me whether to remove the handlers. |
|
Jan 31 |
comment |
Netty FrameDecoder instance state I looked at the ReplayingDecoder, but I didn't think it was what I needed. I am reading in all the bytes available to me and working with those. I evaluate what I just read, if it is a complete PDU then I return what I have. If not then I return a null and the next time back I add the new bytes and evaluate again. If I got an error then I throw an exception. |
|
Jan 31 |
asked | Deleting handler from pipeline |
|
Jan 30 |
asked | Netty FrameDecoder instance state |
|
Jan 23 |
comment |
Pipeline setup for handling fixed sized messages in Netty Ok. I got my test code working with the FixedLengthFrameDecoder. Thanks Norman. |
|
Jan 22 |
comment |
Pipeline setup for handling fixed sized messages in Netty Thanks Norman. When using FixedLengthFrameDecoder, when would/should someone pass in true for allocateFullBuffer? |
|
Jan 19 |
awarded | Student |
|
Jan 19 |
asked | Pipeline setup for handling fixed sized messages in Netty |
|
Jan 17 |
comment |
How can I access a Netty Handler method from outside of the normal flow I figured it would be best to convert the ByteBuffer that is returned by event.getBuffer() to a ChannelBuffer. So I used: ChannelBuffer cb = ChannelBuffers.wrappedBuffer(event.getBuffer()); And then did: ctx.getChannel().write(cb); |
|
Jan 16 |
comment |
How can I access a Netty Handler method from outside of the normal flow Thanks for the confirmation. I don't want to wait. I just want to put the letter in the mail box and go on my way. :) Thanks again Norman. |
|
Jan 16 |
comment |
How can I access a Netty Handler method from outside of the normal flow I wanted to ask this. When I write the data out to the ctx or channel, will that basically hand it off to the channel and I won't have to wait in the Output task for the write cycle to complete? By write cycle, I meant for the data to reach the client. Thanks. |
|
Jan 16 |
comment |
How can I access a Netty Handler method from outside of the normal flow As simple as that. Great! Netty will help us immensely with our NIO issues. Thank you Norman. |
|
Jan 16 |
awarded | Editor |
|
Jan 16 |
revised |
How can I access a Netty Handler method from outside of the normal flow added 7 characters in body |