Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 248 Bytes

File metadata and controls

12 lines (8 loc) · 248 Bytes

Naming convention

Suffix method/function with Future if they return a Future.

For example,

def parseCSVFuture(...params...): Future[] =

Code placement

Keep the public methods earlier in file followed by protected followed by private.