Shutdown() public method

Disconnect from the Tango service. This is called automatically when the TangoApplication goes away. You only need to call this to disconnect from the Tango service before the TangoApplication goes away.
public Shutdown ( ) : void
return void
Ejemplo n.º 1
0
 /// <summary>
 /// Start this instance.
 /// </summary>
 public void reStart()
 {
     m_tangoApplication.Unregister(this);
     m_tangoApplication.Register(this);
     m_tangoApplication.Shutdown();
     m_tangoApplication.Startup(null);
     AndroidHelper.InitTangoUx();
     SetHoldPosture(m_holdPosture);
 }