So i can just remove that implements clause, yes? Are there methods I
should delete as well? In that same class, there's also this code:
/**
* Create <code>SSLProcessorTask</code> objects and configure it to
be ready to proceed request.
*/
@Override
protected ProcessorTask newProcessorTask(final boolean initialize) {
return asyncExecution
? new SSLAsyncProcessorTask(initialize, getBufferResponse())
: new SSLDefaultProcessorTask(initialize, getBufferResponse());
}
SSLDefaultProcessorTask is an unknown class now. Is there a
replacement? Should I just always return SSLAsyncProcessorTask? Or is
it safe to just delete that method?
Jeanfrancois Arcand wrote:
> Salut,
>
> Oleksiy Stashok wrote:
>> Yep :)
>> public class GrizzlyEmbeddedHttps extends GrizzlyEmbeddedHttp
>> implements SecureSelector<SSLImplementation>
>
> I see. I think we can leave without that interface, left over from 1.0
> :-)
>
> A+
>
> -- Jeanfrancois
>
>>
>> WBR,
>> Alexey.
>>
>> On Feb 19, 2009, at 5:04 , Jeanfrancois Arcand wrote:
>>
>>>
>>>
>>> Justin Lee wrote:
>>>> What happened to this interface? It seems to have disappeared from
>>>> grizzly-http after 1.9.4.
>>>
>>> LOL :-) Yes I removed it recently. Was it used in v3? I've missed
>>> that one :-)
>>>
>>> Thanks!
>>>
>>> -- Jeanfrancois
>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>>>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
>> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe_at_grizzly.dev.java.net
> For additional commands, e-mail: dev-help_at_grizzly.dev.java.net
>