2N/A/* -*- Mode: Java; tab-width: 4 -*-
2N/A *
2N/A * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
2N/A *
2N/A * Licensed under the Apache License, Version 2.0 (the "License");
2N/A * you may not use this file except in compliance with the License.
2N/A * You may obtain a copy of the License at
2N/A *
2N/A * http://www.apache.org/licenses/LICENSE-2.0
2N/A *
2N/A * Unless required by applicable law or agreed to in writing, software
2N/A * distributed under the License is distributed on an "AS IS" BASIS,
2N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2N/A * See the License for the specific language governing permissions and
2N/A * limitations under the License.
2N/A
2N/A Change History (most recent first):
2N/A
2N/A$Log: DNSSDService.java,v $
2N/ARevision 1.3 2006/08/14 23:25:08 cheshire
2N/ARe-licensed mDNSResponder daemon source code under Apache License, Version 2.0
2N/A
2N/ARevision 1.2 2004/04/30 21:48:27 rpantos
2N/AChange line endings for CVS.
2N/A
2N/ARevision 1.1 2004/04/30 16:32:34 rpantos
2N/AFirst checked in.
2N/A
2N/Aident "%Z%%M% %I% %E% SMI"
2N/A
2N/A */
2N/A
2N/A
2N/Apackage com.apple.dnssd;
2N/A
2N/A/** A tracking object for a service created by {@link DNSSD}. */
2N/A
2N/Apublic interface DNSSDService
2N/A{
2N/A /**
2N/A Halt the active operation and free resources associated with the DNSSDService.<P>
2N/A
2N/A Any services or records registered with this DNSSDService will be deregistered. Any
2N/A Browse, Resolve, or Query operations associated with this reference will be terminated.<P>
2N/A
2N/A Note: if the service was initialized with DNSSD.register(), and an extra resource record was
2N/A added to the service via {@link DNSSDRegistration#addRecord}, the DNSRecord so created
2N/A is invalidated when this method is called - the DNSRecord may not be used afterward.
2N/A */
2N/A void stop();
2N/A}
2N/A