I think you may mean 'synchronized'.
More info here.
In short, when multiple threads are going to execute a method,
synchronized makes it so that only one thread may execute the function at a time. It is used for code that might have problems if multiple versions are executing simultaneously, such as code that is writing to a file.