Serial - what happen on full tx buffer?

What happen when i'll try to send data while tx buffer is full? Will this wait or overwrite other data in buffer?

alos is it possible to check number of bytes in tx buffer or number of available bytes to send without overflow?

From the Serial reference. The availableForWrite() function.

thanks
What about full tx buffer?

If the TX buffer is full, the code will wait till there is space. So your program can become very slow.

ok, thanks.