anuragraghavan / franca

Automatically exported from code.google.com/p/franca
0 stars 0 forks source link

Support for ByteBuffer as "host" in deployment model #136

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In Franca 0.9.1, the Deployment Model supports no ByteBuffer types (or I have 
not found them).
The following example works for arrays and strings only:

specification ipcq_deployspec {
    for arrays {
        MaxSize: Integer (default: 4096 );
    }
    for strings {
        MaxSize: Integer (default: 256 );
    }
    for bytebuffers {
        MaxSize: Integer (default: 16384 );
    }
}

cu
Andreas

Original issue reported on code.google.com by office.a...@googlemail.com on 23 Feb 2015 at 9:50

GoogleCodeExporter commented 9 years ago
By the way: the "arrays" host works for named arrays and unnamed arrays - which 
is perfect for my use-case!

Original comment by moleskin...@googlemail.com on 23 Feb 2015 at 10:06

GoogleCodeExporter commented 9 years ago
Using byte_buffers as deployment host in specifications is supported starting 
with Franca 0.9.1. Here is an example deployment specification:

    for byte_buffers {
        PropByteBuffer : Integer;
    }

See issue 119.

Original comment by klaus.birken@gmail.com on 8 May 2015 at 6:42

GoogleCodeExporter commented 9 years ago
By the way, type "for " and use CTRL-Space to activate content assist. It will 
propose "byte_buffers" as one of many options :-)

Original comment by klaus.birken@gmail.com on 8 May 2015 at 6:44