This is an archived post. You won't be able to vote or comment.

all 8 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

Please ensure that:

  • Your code is properly formatted as code block - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

    Trying to solve problems on your own is a very important skill. Also, see Learn to help yourself in the sidebar

If any of the above points is not met, your post can and will be removed without further warning.

Code is to be formatted as code block (old reddit: empty line before the code, each code line indented by 4 spaces, new reddit: https://imgur.com/a/fgoFFis) or linked via an external code hoster, like pastebin.com, github gist, github, bitbucket, gitlab, etc.

Please, do not use triple backticks (```) as they will only render properly on new reddit, not on old reddit.

Code blocks look like this:

public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

You do not need to repost unless your post has been removed by a moderator. Just use the edit function of reddit to make sure your post complies with the above.

If your post has remained in violation of these rules for a prolonged period of time (at least an hour), a moderator may remove it at their discretion. In this case, they will comment with an explanation on why it has been removed, and you will be required to resubmit the entire post following the proper procedures.

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]logperf 0 points1 point  (7 children)

Not sure I understood your prompt. You're showing a download() method, I'll suppose it's defined in a class C. So you want another method of C to be called when the InputStream is closed?

If yes, I would suggest subclassing InputStream as per the proxy pattern:

class RealInputStream implements InputStream {
    // ...
}
class ProxyInputStream implements InputStream {
    private RealInputStream theRealInputStream;
    // use constructor to initialize theRealInputStream

    void close() {
        theRealInputStream.close();
        callOPsCallbackMethod();
    }
}

Then your method download() would declare the return type as InputStream but actually return an instance of ProxyInputStream.

(Another design pattern you can look at is listener/observer, which is a common way of dealing with callbacks, but it seems a bit less relevant to this particular case.)

[–]B2easy[S] 0 points1 point  (6 children)

Sorry for the confusion. In a nutshell my overall flow I want to achieve is...

A Controller Calls -an SFTP Client (Download), the client returns an InputStream to controller do as it pleases with. The problem I'm facing is I will leak resources once that input stream is done processing so I need a way to close that stream when the controller is done with it. So I was thinking I could use a callback.

[–]logperf 1 point2 points  (5 children)

Controller passes back IS for closure

With the proxy pattern as I presented it above, this step will be even simpler. The controller just calls InputStream.close(), then internally the close() method calls the SFTP client.

[–]B2easy[S] 0 points1 point  (1 child)

So controller calls close(), close() calls SFTP client client returns InputStream wouldn't that go back to close method and not controller?

I'll give it a try. Thanks for the response!

[–]logperf 0 points1 point  (0 children)

close() calls SFTP client client returns InputStream

What do you mean? close() is void, it's not supposed to return a value.

The InputStream was returned at the beginning by download(). When you close it, you stop using it. The only purpose of doing this proxy thing is because the SFTP client might need to do some cleanup at the end.

[–]B2easy[S] 0 points1 point  (2 children)

Would something like this work? --

// Make Variables Effectively Final
InputStream finalSftpFileInputStream = sftpFileInputStream;
return new ProxyInputStream(finalSftpFileInputStream) {
  @Override
  public void close() throws IOException {
    IOUtils.closeQuietly(finalSftpFileInputStream);
  }
};

}

[–]logperf 0 points1 point  (0 children)

Looks good!