Example usage for android.content Context NSD_SERVICE

List of usage examples for android.content Context NSD_SERVICE

Introduction

In this page you can find the example usage for android.content Context NSD_SERVICE.

Prototype

String NSD_SERVICE

To view the source code for android.content Context NSD_SERVICE.

Click Source Link

Document

Use with #getSystemService(String) to retrieve a android.net.nsd.NsdManager for handling management of network service discovery

Usage

From source file:ibp.plugin.nsd.NSDHelper.java

public NSDHelper(Context context, Handler handler) {
    mHandler = handler;
    mNsdManager = (NsdManager) context.getSystemService(Context.NSD_SERVICE);
}

From source file:org.drulabs.localdash.nsddiscovery.NsdHelper.java

public NsdHelper(Context context) {
    mContext = context;
    mNsdManager = (NsdManager) context.getSystemService(Context.NSD_SERVICE);
    broadcaster = LocalBroadcastManager.getInstance(mContext);
}