MCPcopy Create free account
hub / github.com/XCSoar/XCSoar / InputThread

Method InputThread

android/src/InputThread.java:44–52  ·  view source on GitHub ↗
(String _name, InputListener _listener, InputStream _is)

Source from the content-addressed store, hash-verified

42 volatile InputStream is;
43
44 InputThread(String _name, InputListener _listener, InputStream _is) {
45 super("InputThread " + _name);
46
47 name = _name;
48 listener = _listener;
49 is = _is;
50
51 start();
52 }
53
54 void setListener(final InputListener _listener) {
55 listener = _listener;

Callers

nothing calls this directly

Calls 1

startMethod · 0.80

Tested by

no test coverage detected