Method

DexFutureset_static_name

Declaration [src]

void
dex_future_set_static_name (
  DexFuture* future,
  const char* name
)

Description [src]

Sets the name of the future with a static/internal string.

name will not be copied, so it must be static/internal which can be done either by using string literals or by using g_string_intern().

Parameters

name const char*
 

The name of the future.

 The data is owned by the caller of the function.
 The string is a NUL terminated UTF-8 string.