BluetoothSyncService.java 574 B

1234567891011121314151617181920212223242526272829
  1. package de.tudarmstadt.informatik.hostage.sync.bluetooth;
  2. import android.app.IntentService;
  3. import android.bluetooth.BluetoothAdapter;
  4. import android.content.Intent;
  5. public class BluetoothSyncService extends IntentService {
  6. private ServerThread serverThread;
  7. private ClientThread clientThread;
  8. private CommunicationThread commThread;
  9. private BluetoothAdapter mBluetoothAdapter;
  10. public BluetoothSyncService() {
  11. super("BluetoothSyncService");
  12. }
  13. @Override
  14. protected void onHandleIntent(Intent intent) {
  15. // TODO Auto-generated method stub
  16. }
  17. }