Last active
May 26, 2019 20:19
-
-
Save Mreyna3/c4f443859f5c66dd030f29dbb222099d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private func shouldProcessBatch() -> Bool{ | |
//1 | |
guard batchSum < BATCH_CAP else { | |
return true | |
} | |
return false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment