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

Method close

android/src/AbstractAndroidPort.java:81–91  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

79 }
80
81 @Override public void close() {
82 InputThread i = stealInput();
83 if (i != null)
84 i.close();
85
86 OutputThread o = stealOutput();
87 if (o != null)
88 o.close();
89
90 stateChanged();
91 }
92
93 @Override public int getState() {
94 InputThread i = input;

Callers

nothing calls this directly

Calls 5

stealInputMethod · 0.95
closeMethod · 0.95
stealOutputMethod · 0.95
closeMethod · 0.95
stateChangedMethod · 0.95

Tested by

no test coverage detected