Package javax.jmdns.impl.tasks.resolver
Class DNSResolverTask
- java.lang.Object
-
- java.util.TimerTask
-
- javax.jmdns.impl.tasks.DNSTask
-
- javax.jmdns.impl.tasks.resolver.DNSResolverTask
-
- All Implemented Interfaces:
Runnable
- Direct Known Subclasses:
ServiceInfoResolver,ServiceResolver,TypeResolver
public abstract class DNSResolverTask extends DNSTask
This is the root class for all resolver tasks.- Author:
- Pierre Frisch
-
-
Field Summary
Fields Modifier and Type Field Description protected int_countCounts the number of queries being sent.
-
Constructor Summary
Constructors Constructor Description DNSResolverTask(JmDNSImpl jmDNSImpl)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract DNSOutgoingaddAnswers(DNSOutgoing out)Overridden by subclasses to add questions to the message.
Note: Because of message size limitation the returned message may be different than the message parameter.protected abstract DNSOutgoingaddQuestions(DNSOutgoing out)Overridden by subclasses to add questions to the message.
Note: Because of message size limitation the returned message may be different than the message parameter.protected abstract Stringdescription()Returns a description of the resolver for debuggingvoidrun()voidstart(Timer timer)Start this task.StringtoString()-
Methods inherited from class javax.jmdns.impl.tasks.DNSTask
addAdditionalAnswer, addAnswer, addAnswer, addAuthoritativeAnswer, addQuestion, getDns, getName
-
Methods inherited from class java.util.TimerTask
cancel, scheduledExecutionTime
-
-
-
-
Constructor Detail
-
DNSResolverTask
public DNSResolverTask(JmDNSImpl jmDNSImpl)
- Parameters:
jmDNSImpl-
-
-
Method Detail
-
addQuestions
protected abstract DNSOutgoing addQuestions(DNSOutgoing out) throws IOException
Overridden by subclasses to add questions to the message.
Note: Because of message size limitation the returned message may be different than the message parameter.- Parameters:
out- outgoing message- Returns:
- the outgoing message.
- Throws:
IOException
-
addAnswers
protected abstract DNSOutgoing addAnswers(DNSOutgoing out) throws IOException
Overridden by subclasses to add questions to the message.
Note: Because of message size limitation the returned message may be different than the message parameter.- Parameters:
out- outgoing message- Returns:
- the outgoing message.
- Throws:
IOException
-
description
protected abstract String description()
Returns a description of the resolver for debugging- Returns:
- resolver description
-
-