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: RegisterRecordListener.java,v $
2N/ARevision 1.2 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.1 2006/06/20 23:00:12 rpantos
2N/A<rdar://problem/3839132> Java needs to implement DNSServiceRegisterRecord equivalent
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
2N/A/** A listener that receives results from {@link DNSSDRecordRegistrar#registerRecord}. */
2N/A
2N/Apublic interface RegisterRecordListener extends BaseListener
2N/A{
2N/A /** Called when a record registration succeeds.<P>
2N/A
2N/A @param record
2N/A A {@link DNSRecord}.
2N/A <P>
2N/A @param flags
2N/A Currently ignored, reserved for future use.
2N/A <P>
2N/A */
2N/A void recordRegistered( DNSRecord record, int flags);
2N/A}
2N/A