Need to design an API method whihc take OutputStream as a parameter.
Is it a good practice to close the stream inside the API method or let the caller close it?
test(OutputStream os) {
os.close() //???
}
|
Need to design an API method whihc take OutputStream as a parameter. Is it a good practice to close the stream inside the API method or let the caller close it?
|
|||
|
|
|
I think it should be symmetric. If you do not open that stream (which is likely to be your case), you should not close it, either, in general. |
|||
|
|
|
Unless the purpose of the API is to "finish up the stream", you should let the caller close. He had it first, he was responsible for it, and he may decide that he wants to write some stuff to the stream that your API didn't originally envision. Keep your functionality seperated; its more composable. |
|||
|
|
|
Let user close it. As you are taking OutputStream in argument so we can think that user has already created and opened it. So if you close in your method it will be not good. And if you are just taking new OutputStream as argument and opens it in your method then no need to take it as argument and you can also close it in your method. |
|||
|
|
|
Different use-cases require different patterns, for example, depending on whether the caller needs to read from or write to the stream after the call has completed. The key API design rule is that the API should specify whether it is the caller or called method's responsibility to close the stream. Having said that, it is generally simpler and safer if the code that opens a stream is also responsible for closing it. Consider the case where
This won't leak an open stream as a result of exceptions (or errors!) thrown in either |
||||
|
|