Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

NPP_DestroyStream

 

« Gecko Plugin API Reference « Plug-in Side Plug-in API

Summary

Tells the plug-in that a stream is about to be closed or destroyed.

Syntax

#include <npapi.h>
 
NPError NPP_DestroyStream(NPP       instance, 
                           NPStream* stream, 
                           NPReason  reason);

Parameters

The function has the following parameters:

instance
Pointer to current plug-in instance.
stream
Pointer to current stream.
reason
Reason the stream was destroyed. Values:
  • NPRES_DONE (Most common): Completed normally; all data was sent to the instance.
  • NPRES_USER_BREAK: User canceled stream directly by clicking the Stop button or indirectly by some action such as deleting the instance or initiating higher-priority network operations.
  • NPRES_NETWORK_ERR: Stream failed due to problems with network, disk I/O, lack of memory, or other problems.

Returns

  • If successful, the plug-in should return NPERR_NO_ERROR.
  • If unsuccessful, the plug-in should return an error code. For possible values, see Error Codes.

Description

The browser calls the NPP_DestroyStream function when a data stream sent to the plug-in is finished, either because it has completed successfully or terminated abnormally. After this, the browser deletes the NPStream object.

You should delete any private data allocated in stream->pdata at this time, and should not make any further references to the stream object.

See Also

NPP_NewStream, NPStream

Document Tags and Contributors

Tags: 
 Contributors to this page: teoli, jgriffin, Mgjbot, Pmash
 Last updated by: jgriffin,