John Ericksen

Results 183 comments of John Ericksen

It looks like Parceler support in master hasn't changed. Currently we are detecting beans annotated with `@Parcel` and generating the necessary `Parcels.wrap()` and `unwrap()` code. What I'm proposing is a...

I'd recommend an approach like FragmentArgs took, using an adapter interface to allow for extensions like `ParcelerArgsBundler`: https://github.com/sockeqwe/fragmentargs#argsbundler

This is interesting. Could you give me a ballpark of how any parcel annotated classes you're working with?

Right, ok... looking at it deeper, it looks like it's taking a long time to flush the FileOutputStream to disk. Not sure if we'll be able to do anything about...

Would buffering do the trick then? - maybe just wrap the given OutputStream [here](https://github.com/johncarl81/transfuse/blob/master/transfuse-core/src/main/java/org/androidtransfuse/gen/FilerSourceCodeWriter.java#L53) with `BufferedOutputStream` ?

There may be no way around it. I'll try to fire it up on my machine to see how slow it is on different hardware.

Thanks @Maxxan :+1: