eo beta - mark task, io classes as beta because they are...

This commit is contained in:
Carsten Haitzler 2019-09-10 17:43:02 +01:00
parent e51699afbc
commit 5455a2dcf7
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ enum Efl.Task_Flags {
exit_with_parent = 8, [[Exit when parent exits.]]
}
abstract Efl.Task extends Efl.Loop_Consumer
abstract @beta Efl.Task extends Efl.Loop_Consumer
{
[[EFL's abstraction for a task (process).
@since 1.22

View File

@ -1,6 +1,6 @@
import eina_types;
interface Efl.Io.Closer {
interface @beta Efl.Io.Closer {
[[Generic interface for objects that can close themselves.
This interface allows external objects to transparently close an

View File

@ -1,6 +1,6 @@
import eina_types;
interface Efl.Io.Reader {
interface @beta Efl.Io.Reader {
[[Generic interface for objects that can read data into a provided memory.
This interface allows external objects to transparently monitor

View File

@ -1,6 +1,6 @@
import eina_types;
interface Efl.Io.Writer {
interface @beta Efl.Io.Writer {
[[Generic interface for objects that can write data from a provided memory.
This interface allows external objects to transparently write