Re: [jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-25 Thread Ignasi Barrera
Closed #1025. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/1025#event-835451781

Re: [jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-25 Thread Ignasi Barrera
Merged to master -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/1025#issuecomment-256034035

Re: [jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-24 Thread Ignasi Barrera
nacx commented on this pull request. > @@ -46,6 +51,27 @@ public GsonWrapper(Gson gson) { public T fromJson(String json, Class classOfT) { return gson.fromJson(json, classOfT); } + + @SuppressWarnings("unchecked") + @Override + public T fromJson(InputStream json, Type

Re: [jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-24 Thread Ignasi Barrera
@nacx pushed 1 commit. 085db25 Resource management moved to the caller -- You are receiving this because you are subscribed to this thread. View it on GitHub: https://github.com/jclouds/jclouds/pull/1025/files/7dee51f435765350242221a181e21f0c6c1fd8c4..085db25382991f2017d062ade7c7356e3e1980a3

Re: [jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-23 Thread Andrew Gaul
andrewgaul commented on this pull request. > @@ -46,6 +51,27 @@ public GsonWrapper(Gson gson) { public T fromJson(String json, Class classOfT) { return gson.fromJson(json, classOfT); } + + @SuppressWarnings("unchecked") + @Override + public T fromJson(InputStream json,

[jclouds/jclouds] JCLOUDS-1187: Do not load Json payloads to memory when serializing objects (#1025)

2016-10-23 Thread Ignasi Barrera
https://issues.apache.org/jira/browse/JCLOUDS-1187 You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds/pull/1025 -- Commit Summary -- * JCLOUDS-1187: Do not load Json payloads to memory when serializing objects -- File Changes -- M core