pub unsafe extern "C" fn aws_websocket_release(
    websocket: *mut aws_websocket
)
Expand description

Users must release the websocket when they are done with it. The websocket’s memory cannot be reclaimed until this is done. If the websocket connection was not already shutting down, it will be shut down. Callbacks may continue firing after this is called, with “shutdown” being the final callback. This function may be called from any thread.