Skip to main content
Version: Python

close

The close method closes the BarrageSession.

note

If the BarrageSession is initialized with a managed channel, close will cut down the channel as well.

Syntax

close()

Parameters

This method does not take any parameters.

Returns

Closes the BarrageSession.

Examples

from deephaven.barrage import barrage_session

barrage_sesh = barrage_session("localhost", 10000)

barrage_sesh.close()