Skip to content

lancechentw/RxDNSSD

 
 

Repository files navigation

#RxDNSSD Circle CI

Android library which is Rx wrapper for Apple DNSSD Java API.

#####Why RxDNSSD? My explanation about why jmDNS, Android NSD Services and Google Nearby API are not good enough, and why I maintain this library.

Download

compile 'com.github.andriydruk:rxdnssd:0.5.0'

####Some examples

#####Browse services example

mSubscription = RxDnssd.browse("_ftp._tcp" /*reqType*/, "." /*domain*/)
	.compose(RxDnssd.resolve())
    .compose(RxDnssd.queryRecords())
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe(bonjourService -> {
		if (!bonjourService.isLost()){
        	mAdapter.add(bonjourService);
        } else {
            mAdapter.remove(bonjourService);
        }
        mAdapter.notifyDataSetChanged();
     }, throwable -> {
        Log.e("DNSSD", "Error: ", throwable);
     });

License

Copyright (C) 2016 Andriy Druk

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Reactive version of DNSSD for Android

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 89.9%
  • Java 7.4%
  • Makefile 1.1%
  • Roff 1.1%
  • Other 0.5%